Even opening your example test suites results in this error, on my machine and that of a colleague, we’re on relatively new iMacs and MacBooks. Absolutely nothing works, and we’ve tried for hours doing everything we could find on google.
This is the error I’m getting on my mac with Katalon Studio version 5.1.0.1. The Katalon Automator works fine and I’ve made a test script there which works perfectly.
Test Cases/Version1 FAILED because (of) Unable to navigate to ‘http://www.google.com’ (Root cause: com.kms.katalon.core.webui.exception.BrowserNotOpenedException: Browser is not opened
Build info: version: ‘3.7.1’, revision: ‘8a0099a’, time: ‘2017-11-06T21:07:36.161Z’
System info: host: ‘Williams-MacBook-Pro.local’, ip: ‘XXX.XXX.X.X’, os.name: ‘Mac OS X’, os.arch: ‘x86_64’, os.version: ‘10.12.6’, java.version: ‘1.8.0_102’
Driver info: driver.version: unknown)
I am also facing the same issue… Its carries forward the testcase but there is nothing getting loaded on to the browser and the error that i face is Webelement not found.
I am also suffering from the “Browser is not opened” issue:
Unable to click on object ‘Object Repository/Page_CuraHomepage/btn_MakeAppointment’ (Root cause: com.kms.katalon.core.webui.exception.BrowserNotOpenedException: Browser is not opened
Build info: version: ‘3.7.1’, revision: ‘8a0099a’, time: ‘2017-11-06T21:07:36.161Z’
System info: host: ‘removed’, ip: ‘removed’, os.name: ‘Windows 10’, os.arch: ‘amd64’, os.version: ‘10.0’, java.version: ‘1.8.0_102’
Driver info: driver.version: unknown)
I just installed Katalon Studio, activated it, then loaded the demo project “Sample Web Testing Project” and double-clicked to open “Login” test case. Then I chose “Run > Firefox” and get that above error.
The same happens with “Run > IE” and “Run > Edge”… Didn’t try with Chrome, because I don’t have that browser installed.
My Firefox version is 58.0.2 (64-bit). My Windows 10 is 64-bit, Version 1607 (OS Build 14393.2068) and Katalon Studio is 64-bit version 5.3.1 Build 1.
@silvercoins said:
I am also suffering from the “Browser is not opened” issue
Hmm, I was able to run “Main Test Cases > TC1_Verify Succesful Login” and “Main Test Cases > TC2_Verify Succesful Appointment”. Still, the “Common Test Cases > Login” was not able to be run. Maybe it is not supposed to be run at all, rather it is used from the Main Test Cases?
I got this error because I was intermixing testsuites where linked testcases and using the call testcase Fucntionality within the testcase where I linked one testcase into many.
So when you mix it you can call the browser twice which causes the browserNotOpenedException
you need to choose between one testcase in a testsuite (use the call testcase functionlity) or create seperate testcases
@ts where do you put “com.kms.katalon.core.configuration.RunConfiguration.storeDriver( driver )” I tryed “Use different browser versions” but nothing happen in the open browser.
Also faced this error. The cause was that I had a WebDriver element declared as a variable during initialization of the class (private WebDriver driver = DriverFactory.getWebDriver()). I moved this line to a seperate method and the problem was fixed.