I'm writing a new rspec test case using Capybara (SitePrism actually, which uses Capybara) and I've run into an apparently known issue: https://github.com/jnicklas/capybara/issues/1396. Essentially, due to a change in one or the other, RSpec and Capybara now both have methods named all
, and when I try to use SitePrism to find a group of elements or SitePrism sections, Capybara invokes the wrong method and returns something of the type RSpec::Matchers::BuiltIn::All
rather than the expected array of Capybara or SitePrism objects.
For some reason, all my old tests, including many with very similar usage of sections
and elements
constructs, work perfectly fine. I'm having a really hard time finding differences between them that would account for one failing and the other succeeding. I briefly tried rolling back either Capybara or RSpec to just try to make the problem go away for the moment, but it seemed silly, trying to pinpoint when the problem was introduced, when existing test cases that have been running every day never broke.
Can anyone advise me on why one works and the other fails? Here is what these two test cases have in common:
- Both spec files require the same
spec_helper.rb
file. - The
spec_helper.rb
file has bothrequire rspec
andrequire capybara
. - Each spec file uses
require_relative
to require a page object used in each test. - Each page object file has a
sections :table_rows, <SECTION CLASS>, <ROW CSS>
declaration. They may have different names, classes, and CSS Selectors, but they're the same basic construct. - In each spec file, methods are invoked on the page objects that reference
table_rows
.
Referencing table_rows
in one of these older test cases works just fine, but I'm getting the name collision error in the new test case. Anyone know why that might be, so I can fix the new test case?
Failing that, does anyone know how I can separate things so that the page object requires capybara
but not rspec
and the spec file requires rspec
but not capybara
to prevent the collision? I don't know much about Ruby package management, but it seems like in order to run an rspec test case that uses a page object, it's all going to be mixed together. I'm not sure of a way to avoid requiring them both.
Failing that, does anyone know which versions of either of these two packages I could theoretically use to avoid the issue? I did experiments with rspec 3.2 and capybara 2.4, and neither seemed to work, and I gave up there, because I remembered that no matter how far back in time I go, the test cases I've already written were working fine, and it just seemed silly to try to solve it this way.