1
0
Fork 0
mirror of https://github.com/teamcapybara/capybara.git synced 2022-11-09 12:08:07 -05:00

All drivers now support relative searching

There is a bug in Selenium, which causes it to
find only descendant nodes, even when asked for
a global search. Bug filed here:

http://code.google.com/p/selenium/issues/detail?id=403
This commit is contained in:
Jonas Nicklas 2010-02-26 18:38:22 +01:00
parent 20e32d9d4a
commit 9a19b758ca
7 changed files with 36 additions and 35 deletions

View file

@ -8,6 +8,5 @@ describe Capybara::Driver::Culerity do
it_should_behave_like "driver"
it_should_behave_like "driver with javascript support"
it_should_behave_like "driver with header support"
it_should_behave_like "driver with node path support"
end

View file

@ -7,6 +7,5 @@ describe Capybara::Driver::RackTest do
it_should_behave_like "driver"
it_should_behave_like "driver with header support"
it_should_behave_like "driver with node path support"
end

View file

@ -7,6 +7,5 @@ describe Capybara::Driver::Selenium do
it_should_behave_like "driver"
it_should_behave_like "driver with javascript support"
it_should_behave_like "driver without node path support"
end