Hi. Google brought me to this part of the forum to find and answer on this question. Althought the above solution might work, I was looking for a more general solution. I.e.: I wanted Katalon to run WebUI browser as normal, so not every time specifically for chrome via a custom keyword “openBrowserNoAutomationMode()”. I just want to run exclude that popup every time chrome is launched in my tests.
So, for others who also end-up here: The answer do to this properly is via the Desired Capabilities. It can actually be found here:
Basically it is adding this setting:
(for me, the “disable-infobars” argument works. Apparently it’s reinstated in the latest versions of chrome, so no longer deprecated).
A very nice manual for similar problems:
[Big thanks to those original posters!]
FYI: for me it’s needed as I noticed my imageComparer (using Ashot) seemed to be taking different screenshot depending on the browsers. It seemed to work for firefox, headless firefox and chrome headless, but only for certain screenshots in chrome it looked off! For instance, it was just taking half the screenshot of the webelement. I noticed disabling the popup in Chrome fixed this.