Reputation: 3037
I am trying to launch a test case using Chrome headless. I authenticate with this line of code:
WebUI.authenticate("url", "name", "password", 10)
but it gives the error: Unable to navigate to authenticated page (Root cause: java.lang.Exception: Unsupported browser (only support IE, FF, Chrome))
Upvotes: 1
Views: 1106
Reputation: 1
Try with FailureHandling
WebUI.authenticate("url", "name", "password", 10, , FailureHandling.OPTIONAL)
Upvotes: 0
Reputation: 8394
There is a similar problem on the Katalon Forums. There is a proposed workaround (for an example url of https://dev.mcdonalds.konoss.net/):
WebUI.openBrowser('https://Username:[email protected]/')
Upvotes: 1