Hi,
When I export Katalon studio script from Katalon recorder it contains openBrowser two times?
WebUI.openBrowser(‘https://www.katalon.com/’)
def driver = DriverFactory.getWebDriver()
String baseUrl = “https://www.katalon.com/”
selenium = new WebDriverBackedSelenium(driver, baseUrl)
selenium.open(“https://admin.dev.evity-dev.com/login?redirect=%2F”)
Why does it contain WebUI.openBrowser(‘https://www.katalon.com/’)??
I only want to open selenium.open(“https://admin.dev.evity-dev.com/login?redirect=%2F”)
How to solve this? I tried everything and nothing work. I even removed katalon.com and pasted in my own url.
