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.
In summary, when utilizing the Configuration Parameters (as outlined below), the Record Web feature just straight up does not work. The Red border highlight indicator that appears on mouse-hover over page Elements does not display, nor does interaction with Elements cause them to get recorded as expected.
For context, attached I’ve provided the following:
- com.kms.katalon.core.webui.chrome.properties (694 Bytes)
- chrome_caps.json (751 Bytes)
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
}
}
}
Any advice or knowledge on which Configuration Parameters might impact Record Web would be highly appreciated! Otherwise, I’ll have to resort to the time intensive task of eliminating variables and testing them individually.
Thank you in advance!