I recently set up my Windows 7 VM with everything needed to run my tests. I'm using Ruby 1.9.3, rspec 3, selenium-webdriver 2.42.0, and capybara 2.4.1 gems. Setting up on Windows was easier than I thought (even easier than on MacOS, maybe).
When running the tests in Firefox, I run into this error:
Cannot perform native interaction: Could not load native events component.
My tests run fine in Chrome for Windows. My tests run fine in Chrome/Firefox on MacOS.
I've tried to disable native_events without any success:
profile = Selenium::WebDriver::Firefox::Profile.new
profile.native_events = false
Capybara::Selenium::Driver.new(app, {:browser => :firefox, :profile => profile})
Any ideas? Is there a way to update Firefox driver? Am I missing an important installation on Windows?