Is it possible to make Katalon keywords work if browser opened via selenium.WebDriver like this:
WebDriver driver = new ChromeDriver()driver.get('https://qa.alycedev.com/')
instead of just doing:
WebUI.openBrowser('https://qa.alycedev.com/')
???
The problem is:
- Katalon is at the moment not being able to handle correctly: a) http://forum.katalon.com/discussion/4143/desired-capabilities-are-not-taken-into-account b) http://forum.katalon.com/discussion/5038/chrome-desiredcapabilities-not-applied etc.
- I want to start Chrome with some custom params to log every request/response (like it is done in Browser Developer Tools / Browser)
- I can do the task if I start the browser directly from Selenium, but in this case Katalon keywords can not be executed, saying:
com.kms.katalon.core.webui.exception.BrowserNotOpenedException: Browser is not opened
Please let me know if there is a way.