Reputation: 567
Iam using selenium 1.0.3 RC (java client ).also iam using firefox profile to run Firefox.
while running tests in parallel ,some times it says
"Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system."
Upvotes: 0
Views: 461
Reputation: 113
Try to open Firefox profile icon used to start Firefox with a text editor, look in it for -no-remote and delete that (only the "-no-remote")
Upvotes: 0
Reputation:
Use selenium grid to run test cases on different environment. if dont want to use grid start selenium server on different ports. in your script add following line
this.setPort(444x)
in place of x put your started port number example 4445 for the code which you want to fire on the port
Upvotes: 1