When defining Profile Directory Path in the Start Browser step, the browser shows the message as displayed in the subject header.
MS Edge does it even though there is no Profile Directory Path defined.
As I am using image capture at coordinates, this message distorts the display.
There are many suggestions with Selenium, but where can we implement them in AutomationEdge.
When you want to set a browser profile you could use the âModified Java Scriptâ step to set the browser profile and start the browser.
I am attaching a sample workflow for your reference.
Hi Willem,
Currently we cannot set Chrome Options in Start Browser Step but as Seema pointed out we can add a User Defined Java Class Step to set the chrome option to hide this message which says âChrome is being controlled by Automated Test Softwareâ
To do this we need to add the following chrome option to the driver
chromeOptions.setExperimentalOption(âexcludeSwitchesâ, new String{âenable-automationâ});
PFA sample workflow WF_HideInfoBar.psw (6.2 KB)