Reputation: 529
While automating the one scenario in chrome browser using Selenium Webdriver (Junit) as follows:
Click on Place Payment Button.
Wait for 20 Seconds
Retrieve the Order Number(Used GetText())
After waiting, I am get the following error:
chrome error communicating with the remote browser. it may have died
Upvotes: 3
Views: 7889
Reputation: 21
I was facing this issue for around 20 days and finally resolved by updating latest Selenium Version. That means we have to use compatible Chromedriver and Selenium Version. If you use latest Chromedriver and old Selenium version, it will give this issue "- Error communicating with the remote browser. it may have died”
Upvotes: 1
Reputation: 341
I have resolved the same issue by updating the chrome driver. Try by downloading latest version of chrome driver according to your browser version.
Upvotes: 6