java - Selenium WebDriver throws org.openqa.selenium.remote.UnreachableBrowserException while running test cases in parallel using testNG -


while running test cases in parallel using testng "unreachablebrowserexception" throwing whereas if parallel="false" given test cases executing succesfully.

testng version: 6.9.10 selenium java: 3.0.1 chrome version: 58.0.3029.110 chrome driver version: 2.29

testng xml:

<?xml version="1.0" encoding="utf-8"?> <!doctype suite system "http://testng.org/testng-1.0.dtd"> <suite name="suite" parallel="classes" thread-count="2" verbose="5">   <test name="test">     <classes>       <class name="testscripts.loginscenario.paralleltwo"/>       <class name="testscripts.loginscenario.parallelone"/>     </classes>   </test> <!-- test --> </suite> <!-- suite --> 

testng failure exception

org.openqa.selenium.remote.unreachablebrowserexception: not start new session. possible causes invalid address of remote server or browser start-up failure. build info: version: '3.0.1', revision: '1969d75', time: '2016-10-18 09:49:13 -0700' system info: host: 'a5***-**-00**', ip: '10.43.***.**', os.name: 'windows 7', os.arch: 'x86', os.version: '6.1', java.version: '1.8.0_131' driver info: driver.version: chromedriver 

console

testng 6.9.10 cédric beust (cedric@beust.com)  failed: mail org.openqa.selenium.remote.unreachablebrowserexception: not start new session. possible causes invalid address of remote server or browser start-up failure. build info: version: '3.0.1', revision: '1969d75', time: '2016-10-18 09:49:13 -0700'  failed: google org.openqa.selenium.remote.unreachablebrowserexception: not start new session. possible causes invalid address of remote server or browser start-up failure. build info: version: '3.0.1', revision: '1969d75', time: '2016-10-18 09:49:13 -0700' system info: host: 'a5da', ip: '10.**.***.**', os.name: 'windows 7', os.arch: 'x86', os.version: '6.1', java.version: '1.8.0_131' 

please clarify!!

thanks in advance.


Comments

Popular posts from this blog

html - How to set bootstrap input responsive width? -

javascript - Highchart x and y axes data from json -

javascript - Get js console.log as python variable in QWebView pyqt -