LucCW
LucCW

Reputation: 591

Why does Firefox error message pop up when running Protractor test?

I am e2e testing an AngularJS app with Protractor.

Each time I run a spec, Firefox opens, quits this pops up:enter image description here

and then firefox works and the specs run fine. This stays infront of whatever I'm working on after the test and is annoying. Any fixes?

I am running protractor, configured on localhost:4444, and using the firefox browser (firefox 39), and running on mac osx 10.

I saw this posted on the Protractor Github page but no one seems to have an answer for it quite yet so I figured I'd ask here as well. https://github.com/angular/protractor/issues/2297

Upvotes: 4

Views: 453

Answers (1)

alecxe
alecxe

Reputation: 474221

This is definitely due to compatibility issues between your selenium webdriver and Firefox. I've personally had this problem before until I've downgraded Firefox to, at most, 37 and updated selenium webdriver to the latest version (currently 2.46):

webdriver-manager update

See also:

Upvotes: 5

Related Questions