Switch to active element

hi team

im facing the problem to switch the active element
are katalon has it?

it because i cant select on combobox in the pop up form

thanks

Try WebUI.switchToFrame(), if the pop up form is an iframe.

Alternatively, you can use WebUI.switchToWindowIndex(), or WebUI.switchToWindowTitle(), or WebUI.switchToWindowUrl() - depending on your needs.

And WebUI.switchToDefaultContent() once you are done.

Have you got the answer for this question?

You can use Selenium commands

System.setProperty("webdriver.chrome.driver", "C:\\path-to-chromedriver.exe")
WebDriver driver = new ChromeDriver()
driver.switchTo().activeElement()