Pulkit Agrawal
Pulkit Agrawal

Reputation: 529

Getting "chrome error communicating with the remote browser. it may have died"

While automating the one scenario in chrome browser using Selenium Webdriver (Junit) as follows:

  1. Click on Place Payment Button.

  2. Wait for 20 Seconds

  3. 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

enter image description here

Upvotes: 3

Views: 7889

Answers (2)

Pradip912
Pradip912

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

Lucky
Lucky

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

Related Questions