yandex / YandexDriver

YandexDriver is a WebDriver implementation
Other
66 stars 14 forks source link

Отключить всплывающие подсказки #13

Closed x1nas closed 2 years ago

x1nas commented 2 years ago

При использовании Яндекс.Браузера в автоматизированном режиме могут появляться подсказки:

mstsc_SqVdTllFtI

Можно ли отключить их появление средствами webdriver?

x1nas commented 2 years ago

Сам спросил - сам ответил. Опция ya.custo_education.

Python:

driver_path = 'C:/yandexdriver/yandexdriver.exe'
browser_path = 'C:/Users/test/AppData/Local/Yandex/YandexBrowser/Application/browser.exe'
options = webdriver.ChromeOptions()
options.binary_location = browser_path
prefs = {
    "ya.custo_education":{"enabled": False}
}
options.add_experimental_option("prefs", prefs)
b = webdriver.Chrome(
    executable_path=driver_path,
    options=options,
)