[ad_1]
Given the following html:
...
<body class="foo bar">
...
</body>
...
I previously had a feature test that worked:
expect(page).to have_css('body.foo.bar')
However after upgrading Nokogiri to 1.13.6 (from 1.13.4), the test no longer works.
Failure/Error: expect(page).to have_css('body.foo.bar')
expected to find css "body.foo.bar" but there were no matches
Is there a better way to write this test to get it to pass?
[ad_2]