• Как войти в web telegram при помощи selenium?

    @ZXM942 Автор вопроса
    Владимир Шаблий, насчёт просолена,в софте для инвайтинга открывается данный аккаунт. т.е не от этого зависит

    clear {}
    dc 2
    dc2_auth_key "6ce45135ad059c6c353e8c4a20ca391f711710741b1eac993aa9b7cf7291a848a71de85870b0bc5c4100ca9e1156dc48bd0162a303d6bdce6258d50b6d2f34eacaefaf96875d244b63366ed556b3bff272a53d7f35b423cd9ad2d9ab5d6f80cc0318f83111cc7ff1eebba89d5876def45590c99840249c6b8e85d216d0f35b312902a99cdfa06b7b8e495146f4bafa3245727d60ae1fe35c46bec065a8b67b97188112f263f4ef3bd3a6c4ca3e0a09fb93c8a9f18b6dbfc9df87ede7817c42bd37fadaac4708f9f41b35cd8a0c8098a5472a9105c41131d046ec11b7d72fa3f296ddbc46a07ea70419dc3ec88c7ccaeb5ea19bc4c8d3c1289c270567e870411a"
    dc2_server_salt "ed979655767346f3"
    getItem {}
    k_build 321
    key {}
    kz_version "K"
    length 9
    removeItem {}
    server_time_offset -1
    setItem {}
    state_id 2733558266
    tgme_sync {"canRedirect":false,"ts":1681380553}
    xt_instance {"id":10611078,"idle":true,"time":1681380596177}

    storage при запуске

    ---------------------------------------------
    clear {}
    dc 2
    getItem {}
    key {}
    length 4
    removeItem {}
    server_time_offset -1
    setItem {}
    tgme_sync {"canRedirect":false,"ts":1681380870}
    xt_instance {"id":2408227,"idle":true,"time":1681380875318}

    после добавления куки (перед этим сторэйдж чистил)
  • Как войти в web telegram при помощи selenium?

    @ZXM942 Автор вопроса
    Владимир Шаблий, нет,напиши в тг. тут не удобно.
  • Как войти в web telegram при помощи selenium?

    @ZXM942 Автор вопроса
    Владимир Шаблий, куки добавляются,но аккаунт не показывается
  • Как войти в web telegram при помощи selenium?

    @ZXM942 Автор вопроса
    Владимир Шаблий, напиши в тг @VIPOR3 если шаришь
  • Как войти в web telegram при помощи selenium?

    @ZXM942 Автор вопроса
    Владимир Шаблий,
    options.add_argument('--remote-debugging-port=9222')
            options.add_argument('--user-data-dir=/tmp/user-data')
            options.add_argument('--data-path=/tmp/data-path')
            options.add_argument('--homedir=/tmp')
            options.add_argument('--disk-cache-dir=/tmp/cache-dir')
            options.add_argument('--disable-gpu')
            options.add_argument('--disable-software-rasterizer')
            options.add_argument('--disable-dev-tools')
            options.add_argument('--disable-logging')
            options.add_argument('--log-level=3')
            options.add_argument('--mute-audio')
            options.add_argument('--disable-background-networking')
            options.add_argument('--disable-breakpad')
            options.add_argument('--disable-component-extensions-with-background-pages')
            options.add_argument('--disable-ipc-flooding-protection')
            options.add_argument('--disable-renderer-accessibility')
            options.add_argument('--disable-remote-fonts')
            options.add_argument('--disable-sync')
            options.add_argument('--disable-threaded-animation')
            options.add_argument('--disable-threaded-scrolling')
    
            # Открываем браузер
            driver = webdriver.Chrome(options=options)
            driver.get("https://web.telegram.org")
            print(driver.get_cookies())
            # Загружаем файл сессии json
            with open('14018042597.json', 'r') as f:
                session_data = json.load(f)
            cookie = {'name': 'session', 'value': session_data['session_file']}
            driver.add_cookie(cookie)
            time.sleep(5)
            driver.refresh()
            driver.implicitly_wait(10)        
            if "Telegram Web" in driver.title:
                print("Успешный вход в Telegram Web")
            else:
                print("Не удалось войти в Telegram Web")
    
            time.sleep(15)
            # Закрываем браузер
            driver.quit()
  • Как войти в web telegram при помощи selenium?

    @ZXM942 Автор вопроса
    Владимир Шаблий,
    options = webdriver.ChromeOptions()
            options.add_argument('--enable-features=NetworkService,NetworkServiceInProcess')
            options.add_argument('--disable-features=VizDisplayCompositor')
            options.add_argument('--disable-web-security')
            options.add_argument('--allow-running-insecure-content')
            options.add_argument('--disable-site-isolation-trials')
            options.add_argument('--disable-extensions')
            options.add_argument('--disable-popup-blocking')
            options.add_argument('--disable-default-apps')
            options.add_argument('--disable-infobars')
            options.add_argument('--disable-notifications')
            options.add_argument('--disable-translate')
            options.add_argument('--disable-save-password-bubble')
            options.add_argument('--disable-background-timer-throttling')
            options.add_argument('--disable-backgrounding-occluded-windows')
            options.add_argument('--disable-renderer-backgrounding')
            options.add_argument('--disable-dev-shm-usage')
            options.add_argument('--no-sandbox')
            options.add_argument('--remote-debugging-port=9222')
            options.add_argument('--user-data-dir=/tmp/user-data')
            options.add_argument('--data-path=/tmp/data-path')
            options.add_argument('--homedir=/tmp')
            options.add_argument('--disk-cache-dir=/tmp/cache-dir')
            options.add_argument('--disable-gpu')
            options.add_argument('--disable-software-rasterizer')
            options.add_argument('--disable-dev-tools')
            options.add_argument('--disable-logging')
            options.add_argument('--log-level=3')
            options.add_argument('--mute-audio')
            options.add_argument('--disable-background-networking')
            options.add_argument('--disable-breakpad')
            options.add_argument('--disable-component-extensions-with-background-pages')
            options.add_argument('--disable-ipc-flooding-protection')
            options.add_argument('--disable-renderer-accessibility')
            options.add_argument('--disable-remote-fonts')
            options.add_argument('--disable-sync')
            options.add_argument('--disable-threaded-animation')
            options.add_argument('--disable-threaded-scrolling')
            options.add_argument('--disable-verify-client-certificates')
            options.add_argument('--disable-wake-on-wifi')
            options.add_argument('--enable-automation')
            options.add_argument('--force-color-profile=srgb')
            options.add_argument('--metrics-recording-only')
            options.add_argument('--no-first-run')
            options.add_argument('--safebrowsing-disable-auto-update')
            options.add_argument('--use-mock-keychain')
            options.add_argument('--disable-blink-features=AutomationControlled')
            options.add_argument('--disable-logging')
            options.add_argument('--log-level=3')
            options.add_argument('--disable-extensions')
            options.add_argument('--disable-popup-blocking')
            options.add_argument('--disable-default-apps')
            options.add_argument('--disable-infobars')
            options.add_argument('--disable-notifications')
            options.add_argument('--disable-translate')
            options.add_argument('--disable-save-password-bubble')
            options.add_argument('--disable-background-timer-throttling')
            options.add_argument('--disable-backgrounding-occluded-windows')
            options.add_argument('--disable-renderer-backgrounding')
            options.add_argument('--disable-dev-shm-usage')
            options.add_argument('--no-sandbox')
            options.add_argument('--remote-debugging-port=9222')
            options.add_argument('--user-data-dir=/tmp/user-data')
            options.add_argument('--data-path=/tmp/data-path')
            options.add_argument('--homedir=/tmp')
            options.add_argument('--disk-cache-dir=/tmp/cache-dir')
            options.add_argument('--disable-gpu')
            options.add_argument('--disable-software-rasterizer')
            options.add_argument('--disable-dev-tools')
            options.add_argument('--disable-logging')
            options.add_argument('--log-level=3')
            options.add_argument('--mute-audio')
            options.add_argument('--disable-background-networking')
            options.add_argument('--disable-breakpad')
            options.add_argument('--disable-component-extensions-with-background-pages')
            options.add_argument('--disable-ipc-flooding-protection')
            options.add_argument('--disable-renderer-accessibility')
            options.add_argument('--disable-remote-fonts')
            options.add_argument('--disable-sync')
            options.add_argument('--disable-threaded-animation')
            options.add_argument('--disable-threaded-scrolling')
            options.add_argument('--disable-verify-client-certificates')
            options.add_argument('--disable-wake-on-wifi')
            options.add_argument('--enable-automation')
            options.add_argument('--force-color-profile=srgb')
            options.add_argument('--metrics-recording-only')
            options.add_argument('--no-first-run')
            options.add_argument('--safebrowsing-disable-auto-update')
            options.add_argument('--use-mock-keychain')
            options.add_argument('--disable-blink-features=AutomationControlled')
            options.add_argument('--disable-logging')
            options.add_argument('--log-level=3')
            options.add_argument('--disable-extensions')
            options.add_argument('--disable-popup-blocking')
            options.add_argument('--disable-default-apps')
            options.add_argument('--disable-infobars')
            options.add_argument('--disable-notifications')
            options.add_argument('--disable-translate')
            options.add_argument('--disable-save-password-bubble')
            options.add_argument('--disable-background-timer-throttling')
            options.add_argument('--disable-backgrounding-occluded-windows')
            options.add_argument('--disable-renderer-backgrounding')
            options.add_argument('--disable-dev-shm-usage')
            options.add_argument('--no-sandbox')
            options.add_argument('--remote-debugging-port=9222')
            options.add_argument('--user-data-dir=/tmp/user-data')
            options.add_argument('--data-path=/tmp/data-path')
            options.add_argument('--homedir=/tmp')
            options.add_argument('--disk-cache-dir=/tmp/cache-dir')
            options.add_argument('--disable-gpu')
            options.add_argument('--disable-software-rasterizer')
            options.add_argument('--disable-dev-tools')
            options.add_argument('--disable-logging')
            options.add_argument('--log-level=3')
            options.add_argument('--mute-audio')
            options.add_argument('--disable-background-networking')
            options.add_argument('--disable-breakpad')
            options.add_argument('--disable-component-extensions-with-background-pages')
            options.add_argument('--disable-ipc-flooding-protection')
            options.add_argument('--disable-renderer-accessibility')
            options.add_argument('--disable-remote-fonts')
            options.add_argument('--disable-sync')
            options.add_argument('--disable-threaded-animation')
            options.add_argument('--disable-threaded-scrolling')
            options.add_argument('--disable-verify-client-certificates')
            options.add_argument('--disable-wake-on-wifi')
            options.add_argument('--enable-automation')
            options.add_argument('--force-color-profile=srgb')
            options.add_argument('--metrics-recording-only')
            options.add_argument('--no-first-run')
            options.add_argument('--safebrowsing-disable-auto-update')
            options.add_argument('--use-mock-keychain')
            options.add_argument('--disable-blink-features=AutomationControlled')
            options.add_argument('--disable-logging')
            options.add_argument('--log-level=3')
            options.add_argument('--disable-extensions')
            options.add_argument('--disable-popup-blocking')
            options.add_argument('--disable-default-apps')
            options.add_argument('--disable-infobars')
            options.add_argument('--disable-notifications')
            options.add_argument('--disable-translate')
            options.add_argument('--disable-save-password-bubble')
            options.add_argument('--disable-background-timer-throttling')
            options.add_argument('--disable-backgrounding-occluded-windows')
            options.add_argument('--disable-renderer-backgrounding')
            options.add_argument('--disable-dev-shm-usage')
            options.add_argument('--no-sandbox')
  • Как войти в web telegram при помощи selenium?

    @ZXM942 Автор вопроса
    Владимир Шаблий, но ответа так и не нашел
  • Как сделать приветствие на аиограм 2.22.2?

    @ZXM942 Автор вопроса
    можешь дать свой тг?