Reputation: 151
I come across this problem "command line server for the ie driver has stopped working" when execute my selenium batch tests on Internet explorer browser most of the times... ..... this seriously impact the test execution...Have seen many posts in web regarding this , but could not make out why this issue happens ,and how we can find a solution for this ...Please let me know if you knows any detail reading this , Many Thanks, ~Musaffir
Upvotes: 5
Views: 4263
Reputation: 11
From IEDriverserver v3.5.0.0 changelog:
You should use the the 32 bit version of the driver because of this update in v2.47.0.1:
You should download the v3.4.0 for Win 32 from here: http://selenium-release.storage.googleapis.com/3.4/IEDriverServer_Win32_3.4.0.zip
(Source: https://raw.githubusercontent.com/SeleniumHQ/selenium/master/cpp/iedriverserver/CHANGELOG)
Upvotes: 1
Reputation: 11
Cause of the error is that: IE11 with the IEDriverServer_x64_3.5.0 or latest version on windows 7 64bit or other system environment.
This error is not about the IE security setings or regedits, but because the IEDriverServer version is not compatible.
Please use the IEDriverServer_x64_3.0.0.
Download it from this site:
http://selenium-release.storage.googleapis.com/index.html?path=3.0/
Upvotes: 1