everydayrails / rspec_rails_4

Everyday Rails Testing with RSpec (Rails 4.0 Edition)
MIT License
269 stars 144 forks source link

Firefox 26 requires selenium-webdriver 2.39 #65

Open JunichiIto opened 10 years ago

JunichiIto commented 10 years ago

I had to update selenium-webdriver to run specs against Firefox 26.

gem "selenium-webdriver", "~> 2.39.0"

Without this, Firefox and RSpec completely stops after starting up Firefox.

The similar problem is reported here: http://stackoverflow.com/questions/20498046/selenium-webdriver-2-with-firefox-26

ruralocity commented 10 years ago

I’ve addressed this in the book and am pushing a minor update now (no e-mail notification). I also added a warning to let people know that this extra, external dependency on Firefox may cause things to break.

I’ll try to update the sample source in the next few days. That is a longer process.

Aaron

On Jan 21, 2014, at 4:51 PM, Junichi Ito notifications@github.com wrote:

I had to update selenium-webdriver to run specs against Firefox 26.

gem "selenium-webdriver", "~> 2.39.0" Without this, Firefox and RSpec completely stops after starting up Firefox.

— Reply to this email directly or view it on GitHub.

JunichiIto commented 10 years ago

Okay, then that would be fine.