Choose the action «Open Browser» from the «Browser» action group.
Select «Yandex» in the action parameters under the «Browser» field.
Specify the descriptive list of browser properties and their values that will be set at startup, in the «Properties» field, in JSON format.
Template:{
"acceptInsecureCerts": true,
"browserName": "chrome",
"goog:loggingPrefs": {
"browser": "ALL"
},"timeouts": {
"implicit": 0,
"pageLoad": 30000,
"script": 30000
},
"unhandledPromptBehavior": "dismiss",
"goog:chromeOptions": {
"args": [
"disable-popup-blocking",
"disable-notifications",
"no-sandbox",
"disable-infobars",
"disable-extensions",
"disable-gpu",
"start-maximized",
"user-data-dir=C:\\Users\\<USER>\\AppData\\Local\\Yandex\\YandexBrowser\\User Data",
"profile-directory=Default"
],
"extensions": []
}
}- C:\\Users\\<USER>\\AppData\\Local\\Yandex\\YandexBrowser\\User Data - заменить в пути «USER» на своего пользователя.
- profile-directory - необходимо указать папку с необходимым профилем. По умолчанию прописывается "Default". Пример:
Example field entries: - Run the robot. The browser will open with the specified profile.