2016-03-07 19:52:19 -05:00
|
|
|
# frozen_string_literal: true
|
2018-02-28 19:11:41 -05:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
Capybara::SpecHelper.spec '#has_css?' do
|
|
|
|
before do
|
|
|
|
@session.visit('/with_html')
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should be true if the given selector is on the page" do
|
2013-11-14 12:43:36 -05:00
|
|
|
expect(@session).to have_css("p")
|
|
|
|
expect(@session).to have_css("p a#foo")
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should be false if the given selector is not on the page" do
|
2013-11-14 12:43:36 -05:00
|
|
|
expect(@session).not_to have_css("abbr")
|
|
|
|
expect(@session).not_to have_css("p a#doesnotexist")
|
|
|
|
expect(@session).not_to have_css("p.nosuchclass")
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should respect scopes" do
|
|
|
|
@session.within "//p[@id='first']" do
|
2013-11-14 12:43:36 -05:00
|
|
|
expect(@session).to have_css("a#foo")
|
|
|
|
expect(@session).not_to have_css("a#red")
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-10-04 14:10:29 -04:00
|
|
|
it "should wait for content to appear", requires: [:js] do
|
2012-07-21 16:44:10 -04:00
|
|
|
@session.visit('/with_js')
|
|
|
|
@session.click_link('Click me')
|
2013-11-14 12:43:36 -05:00
|
|
|
expect(@session).to have_css("input[type='submit'][value='New Here']")
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context "with between" do
|
|
|
|
it "should be true if the content occurs within the range given" do
|
2016-10-04 14:10:29 -04:00
|
|
|
expect(@session).to have_css("p", between: 1..4)
|
|
|
|
expect(@session).to have_css("p a#foo", between: 1..3)
|
|
|
|
expect(@session).to have_css("p a.doesnotexist", between: 0..8)
|
2010-01-18 14:33:22 -05:00
|
|
|
end
|
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
it "should be false if the content occurs more or fewer times than range" do
|
2018-02-28 19:11:41 -05:00
|
|
|
expect(@session).not_to have_css("p", between: 6..11)
|
2016-10-04 14:10:29 -04:00
|
|
|
expect(@session).not_to have_css("p a#foo", between: 4..7)
|
|
|
|
expect(@session).not_to have_css("p a.doesnotexist", between: 3..8)
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
|
|
|
end
|
2010-10-29 12:02:43 -04:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
context "with count" do
|
2012-09-25 04:47:20 -04:00
|
|
|
it "should be true if the content occurs the given number of times" do
|
2016-10-04 14:10:29 -04:00
|
|
|
expect(@session).to have_css("p", count: 3)
|
|
|
|
expect(@session).to have_css("p a#foo", count: 1)
|
|
|
|
expect(@session).to have_css("p a.doesnotexist", count: 0)
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
2010-10-29 12:02:43 -04:00
|
|
|
|
2012-09-25 04:37:04 -04:00
|
|
|
it "should be false if the content occurs a different number of times than the given" do
|
2016-10-04 14:10:29 -04:00
|
|
|
expect(@session).not_to have_css("p", count: 6)
|
|
|
|
expect(@session).not_to have_css("p a#foo", count: 2)
|
|
|
|
expect(@session).not_to have_css("p a.doesnotexist", count: 1)
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
2009-12-15 14:58:51 -05:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
it "should coerce count to an integer" do
|
2016-10-04 14:10:29 -04:00
|
|
|
expect(@session).to have_css("p", count: "3")
|
|
|
|
expect(@session).to have_css("p a#foo", count: "1")
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
|
|
|
end
|
2009-12-15 14:58:51 -05:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
context "with maximum" do
|
|
|
|
it "should be true when content occurs same or fewer times than given" do
|
2016-10-04 14:10:29 -04:00
|
|
|
expect(@session).to have_css("h2.head", maximum: 5) # edge case
|
|
|
|
expect(@session).to have_css("h2", maximum: 10)
|
|
|
|
expect(@session).to have_css("p a.doesnotexist", maximum: 1)
|
|
|
|
expect(@session).to have_css("p a.doesnotexist", maximum: 0)
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
2011-02-20 19:45:53 -05:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
it "should be false when content occurs more times than given" do
|
2016-10-04 14:10:29 -04:00
|
|
|
expect(@session).not_to have_css("h2.head", maximum: 4) # edge case
|
|
|
|
expect(@session).not_to have_css("h2", maximum: 3)
|
|
|
|
expect(@session).not_to have_css("p", maximum: 1)
|
2010-01-18 14:33:22 -05:00
|
|
|
end
|
2009-12-15 14:58:51 -05:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
it "should coerce maximum to an integer" do
|
2016-10-04 14:10:29 -04:00
|
|
|
expect(@session).to have_css("h2.head", maximum: "5") # edge case
|
|
|
|
expect(@session).to have_css("h2", maximum: "10")
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
|
|
|
end
|
2010-10-29 12:02:43 -04:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
context "with minimum" do
|
|
|
|
it "should be true when content occurs same or more times than given" do
|
2016-10-04 14:10:29 -04:00
|
|
|
expect(@session).to have_css("h2.head", minimum: 5) # edge case
|
|
|
|
expect(@session).to have_css("h2", minimum: 3)
|
|
|
|
expect(@session).to have_css("p a.doesnotexist", minimum: 0)
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
2011-02-20 19:45:53 -05:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
it "should be false when content occurs fewer times than given" do
|
2016-10-04 14:10:29 -04:00
|
|
|
expect(@session).not_to have_css("h2.head", minimum: 6) # edge case
|
|
|
|
expect(@session).not_to have_css("h2", minimum: 8)
|
|
|
|
expect(@session).not_to have_css("p", minimum: 10)
|
|
|
|
expect(@session).not_to have_css("p a.doesnotexist", minimum: 1)
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
2010-10-29 12:02:43 -04:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
it "should coerce minimum to an integer" do
|
2016-10-04 14:10:29 -04:00
|
|
|
expect(@session).to have_css("h2.head", minimum: "5") # edge case
|
|
|
|
expect(@session).to have_css("h2", minimum: "3")
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
|
|
|
end
|
2010-10-29 12:02:43 -04:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
context "with text" do
|
|
|
|
it "should discard all matches where the given string is not contained" do
|
2016-10-04 14:10:29 -04:00
|
|
|
expect(@session).to have_css("p a", text: "Redirect", count: 1)
|
|
|
|
expect(@session).not_to have_css("p a", text: "Doesnotexist")
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
2011-02-20 19:45:53 -05:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
it "should discard all matches where the given regexp is not matched" do
|
2016-10-04 14:10:29 -04:00
|
|
|
expect(@session).to have_css("p a", text: /re[dab]i/i, count: 1)
|
|
|
|
expect(@session).not_to have_css("p a", text: /Red$/)
|
2010-10-29 12:02:43 -04:00
|
|
|
end
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
2017-05-23 12:45:51 -04:00
|
|
|
|
|
|
|
it "should allow escapes in the CSS selector" do
|
|
|
|
expect(@session).to have_css('p[data-random="abc\\\\def"]')
|
|
|
|
expect(@session).to have_css("p[data-random='#{Capybara::Selector::CSS.escape('abc\def')}']")
|
|
|
|
end
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
2010-10-29 12:02:43 -04:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
Capybara::SpecHelper.spec '#has_no_css?' do
|
|
|
|
before do
|
|
|
|
@session.visit('/with_html')
|
|
|
|
end
|
2009-12-15 14:58:51 -05:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
it "should be false if the given selector is on the page" do
|
2013-11-14 12:43:36 -05:00
|
|
|
expect(@session).not_to have_no_css("p")
|
|
|
|
expect(@session).not_to have_no_css("p a#foo")
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
2010-10-29 12:02:43 -04:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
it "should be true if the given selector is not on the page" do
|
2013-11-14 12:43:36 -05:00
|
|
|
expect(@session).to have_no_css("abbr")
|
|
|
|
expect(@session).to have_no_css("p a#doesnotexist")
|
|
|
|
expect(@session).to have_no_css("p.nosuchclass")
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
2011-02-20 19:45:53 -05:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
it "should respect scopes" do
|
|
|
|
@session.within "//p[@id='first']" do
|
2013-11-14 12:43:36 -05:00
|
|
|
expect(@session).not_to have_no_css("a#foo")
|
|
|
|
expect(@session).to have_no_css("a#red")
|
2010-01-18 14:33:22 -05:00
|
|
|
end
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
2009-12-30 11:37:56 -05:00
|
|
|
|
2016-10-04 14:10:29 -04:00
|
|
|
it "should wait for content to disappear", requires: [:js] do
|
2012-07-21 16:44:10 -04:00
|
|
|
@session.visit('/with_js')
|
|
|
|
@session.click_link('Click me')
|
2013-11-14 12:43:36 -05:00
|
|
|
expect(@session).to have_no_css("p#change")
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context "with between" do
|
|
|
|
it "should be false if the content occurs within the range given" do
|
2016-10-04 14:10:29 -04:00
|
|
|
expect(@session).not_to have_no_css("p", between: 1..4)
|
|
|
|
expect(@session).not_to have_no_css("p a#foo", between: 1..3)
|
|
|
|
expect(@session).not_to have_no_css("p a.doesnotexist", between: 0..2)
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should be true if the content occurs more or fewer times than range" do
|
2018-02-28 19:11:41 -05:00
|
|
|
expect(@session).to have_no_css("p", between: 6..11)
|
2016-10-04 14:10:29 -04:00
|
|
|
expect(@session).to have_no_css("p a#foo", between: 4..7)
|
|
|
|
expect(@session).to have_no_css("p a.doesnotexist", between: 3..8)
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
|
|
|
end
|
2010-10-29 12:02:43 -04:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
context "with count" do
|
|
|
|
it "should be false if the content is on the page the given number of times" do
|
2016-10-04 14:10:29 -04:00
|
|
|
expect(@session).not_to have_no_css("p", count: 3)
|
|
|
|
expect(@session).not_to have_no_css("p a#foo", count: 1)
|
|
|
|
expect(@session).not_to have_no_css("p a.doesnotexist", count: 0)
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should be true if the content is on the page the given number of times" do
|
2016-10-04 14:10:29 -04:00
|
|
|
expect(@session).to have_no_css("p", count: 6)
|
|
|
|
expect(@session).to have_no_css("p a#foo", count: 2)
|
|
|
|
expect(@session).to have_no_css("p a.doesnotexist", count: 1)
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
2010-10-29 12:02:43 -04:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
it "should coerce count to an integer" do
|
2016-10-04 14:10:29 -04:00
|
|
|
expect(@session).not_to have_no_css("p", count: "3")
|
|
|
|
expect(@session).not_to have_no_css("p a#foo", count: "1")
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
|
|
|
end
|
2011-02-20 19:45:53 -05:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
context "with maximum" do
|
|
|
|
it "should be false when content occurs same or fewer times than given" do
|
2016-10-04 14:10:29 -04:00
|
|
|
expect(@session).not_to have_no_css("h2.head", maximum: 5) # edge case
|
|
|
|
expect(@session).not_to have_no_css("h2", maximum: 10)
|
|
|
|
expect(@session).not_to have_no_css("p a.doesnotexist", maximum: 0)
|
2010-10-29 12:02:43 -04:00
|
|
|
end
|
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
it "should be true when content occurs more times than given" do
|
2016-10-04 14:10:29 -04:00
|
|
|
expect(@session).to have_no_css("h2.head", maximum: 4) # edge case
|
|
|
|
expect(@session).to have_no_css("h2", maximum: 3)
|
|
|
|
expect(@session).to have_no_css("p", maximum: 1)
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
2010-10-29 12:02:43 -04:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
it "should coerce maximum to an integer" do
|
2016-10-04 14:10:29 -04:00
|
|
|
expect(@session).not_to have_no_css("h2.head", maximum: "5") # edge case
|
|
|
|
expect(@session).not_to have_no_css("h2", maximum: "10")
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "with minimum" do
|
2012-09-25 04:37:04 -04:00
|
|
|
it "should be false when content occurs same or more times than given" do
|
2016-10-04 14:10:29 -04:00
|
|
|
expect(@session).not_to have_no_css("h2.head", minimum: 5) # edge case
|
|
|
|
expect(@session).not_to have_no_css("h2", minimum: 3)
|
|
|
|
expect(@session).not_to have_no_css("p a.doesnotexist", minimum: 0)
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should be true when content occurs fewer times than given" do
|
2016-10-04 14:10:29 -04:00
|
|
|
expect(@session).to have_no_css("h2.head", minimum: 6) # edge case
|
|
|
|
expect(@session).to have_no_css("h2", minimum: 8)
|
|
|
|
expect(@session).to have_no_css("p", minimum: 15)
|
|
|
|
expect(@session).to have_no_css("p a.doesnotexist", minimum: 1)
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should coerce minimum to an integer" do
|
2016-10-04 14:10:29 -04:00
|
|
|
expect(@session).not_to have_no_css("h2.head", minimum: "4") # edge case
|
|
|
|
expect(@session).not_to have_no_css("h2", minimum: "3")
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "with text" do
|
|
|
|
it "should discard all matches where the given string is not contained" do
|
2016-10-04 14:10:29 -04:00
|
|
|
expect(@session).not_to have_no_css("p a", text: "Redirect", count: 1)
|
|
|
|
expect(@session).to have_no_css("p a", text: "Doesnotexist")
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
2010-10-29 12:02:43 -04:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
it "should discard all matches where the given regexp is not matched" do
|
2016-10-04 14:10:29 -04:00
|
|
|
expect(@session).not_to have_no_css("p a", text: /re[dab]i/i, count: 1)
|
|
|
|
expect(@session).to have_no_css("p a", text: /Red$/)
|
2009-12-30 11:37:56 -05:00
|
|
|
end
|
2009-12-15 14:58:51 -05:00
|
|
|
end
|
2010-01-18 14:33:22 -05:00
|
|
|
end
|