Closse popup windows

hi,
Is there a way that katalon recorder can close this popup windows?

Hi Ema,

For my limited knowledge in such topic, I’d suggest using the web driver.

WebDriver webDriver = DriverFactory.getWebDriver()

if you want to dismiss:
webDriver.switchTo().alert().dismiss()

If you want to accept:
webDriver.switchTo().alert().accept()

Hi Tarek!
those web controllers I run them in the recorder with the runscript command?.

Hi Ema,
The web driver is ran in the test case script!

Sorry I’m new to this and I’m using the extension, no katalon studio. I don’t think I can add what you recommend