I am working to convert some Selenium tests to use Selenium grid and am running into a problem.
The tests run fine using a browser on the local machine.
I created a new driver like this (in spec_helper.rb):
Capybara.register_driver :selenium_remote do |app|
caps = Selenium::WebDriver::Remote::Capabilities.chrome
Selenium::WebDriver.for(:remote,
:url => 'http://gridhub:4444/grid/driver',
:desired_capabilities => caps)
end
When I run the tests with the new driver the hub is contacted and a node loads the Chrome driver, everything looks ok on the grid side.
The problem is that on the machine initiating the tests I am getting the following exception:
Failure/Error: Unable to find matching line from backtrace
SystemStackError:
stack level too deep
# /home/dana/.rvm/gems/ruby-1.9.3-p194/gems/capybara-2.0.1/lib/capybara.rb:298
I created this bare bones test, and I am still seeing the same exception just running it:
Capybara.default_driver = :selenium_remote
describe 'I can' do
it 'visit Google without throwing an error' do
visit 'http://www.google.com'
end
end
I am using Selenium server standalone 2.26.0, Capybara 2.0.1 and RSpec 2.9.0.
Any ideas what is causing this?