I am facing an issue while running my selenium 2.0 (WebDriver) test case from Jenkins on Selenium Grid.
My test case is getting executed successfully but once the test cases is executed completely, the browser closes automatically and invoke a new browser instance for the next test case. Since the browser closes once the test case is executed, Jenkins throws the below exception and mark the test case as failed.
SEVERE: Internal Error. Session Id for the current WebDriver session was Null. java.lang.RuntimeException: Internal Error. Session Id for the current WebDriver session was Null.
I have automated the test cases using Selenium 2.0, Java and TestNG. I tried Grid.driver().manage().deleteAllCookies(), Grid.driver().close() and Grid.driver().quit() commands at the end of the test case but none of them worked.
I am just wondering any one has faced the same issue and have a solution. Any help on this is appreciated.
Thanks, Sreejith