Hello to whom it may concern,
I was hoping someone could help me with an issue I’m experiencing while utilizing the Record Web feature.
Per my employer’s instructions, we’ve been asked to apply multiple browser configuration parameters to avoid productivity loss caused by Alerts, Prompts and Pop-ups etc. during test automation, but also to help ensure the browsers are executing Tests in a consistent manner.
For context, attached I’ve provided the following:
JSON Beautified version:
{
"CHROME_DRIVER": {
"args": [
"--disable-component-update",
"--disable-dev-shm-usage",
"--disable-features=ChromeManagement,EnterprisePolicy",
"--disable-features=SafeBrowsing,PasswordLeakToggleMove",
"--disable-infobars",
"--disable-notifications",
"--disable-popup-blocking",
"--disable-save-password-bubble",
"--disable-single-click-autofill",
"--force-device-scale-factor=1",
"--guest",
"--incognito",
"--lang=en-US",
"--override-language-detection",
"--password-store\\u003dbasic"
],
"excludeSwitches": [
"enable-automation",
"load-extension"
],
"prefs": {
"credentials_enable_service": false,
"profile.password_manager_enabled": false,
"profile.password_manager_leak_detection": false,
"autofill.profile_enabled": false
}
}
}

