nix86
nix86

Reputation: 3037

Katalon Studio error: Unable to navigate to authenticated page (Root cause: java.lang.Exception: Unsupported browser (only support IE, FF, Chrome))

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

Answers (2)

Maroua Chouari
Maroua Chouari

Reputation: 1

Try with FailureHandling

WebUI.authenticate("url", "name", "password", 10, , FailureHandling.OPTIONAL)

Upvotes: 0

Mate Mrše
Mate Mrše

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

Related Questions