mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
58 lines
2.1 KiB
Ruby
58 lines
2.1 KiB
Ruby
Capybara::SpecHelper.spec '#text' do
|
|
it "should print the text of the page" do
|
|
@session.visit('/with_simple_html')
|
|
expect(@session.text).to eq('Bar')
|
|
end
|
|
|
|
it "ignores invisible text by default" do
|
|
@session.visit('/with_html')
|
|
expect(@session.find(:id, "hidden-text").text).to eq('Some of this text is')
|
|
end
|
|
|
|
it "shows invisible text if `:all` given" do
|
|
@session.visit('/with_html')
|
|
expect(@session.find(:id, "hidden-text").text(:all)).to eq('Some of this text is hidden!')
|
|
end
|
|
|
|
it "ignores invisible text if `:visible` given" do
|
|
Capybara.ignore_hidden_elements = false
|
|
@session.visit('/with_html')
|
|
expect(@session.find(:id, "hidden-text").text(:visible)).to eq('Some of this text is')
|
|
end
|
|
|
|
it "ignores invisible text if `Capybara.ignore_hidden_elements = true`" do
|
|
@session.visit('/with_html')
|
|
expect(@session.find(:id, "hidden-text").text).to eq('Some of this text is')
|
|
Capybara.ignore_hidden_elements = false
|
|
expect(@session.find(:id, "hidden-text").text).to eq('Some of this text is hidden!')
|
|
end
|
|
|
|
it "ignores invisible text if `Capybara.visible_text_only = true`" do
|
|
@session.visit('/with_html')
|
|
Capybara.visible_text_only = true
|
|
expect(@session.find(:id, "hidden-text").text).to eq('Some of this text is')
|
|
Capybara.ignore_hidden_elements = false
|
|
expect(@session.find(:id, "hidden-text").text).to eq('Some of this text is')
|
|
end
|
|
|
|
it "ignores invisible text if ancestor is invisible" do
|
|
@session.visit('/with_html')
|
|
expect(@session.find(:id, "hidden_via_ancestor", visible: false).text).to eq('')
|
|
end
|
|
|
|
context "with css as default selector" do
|
|
before { Capybara.default_selector = :css }
|
|
it "should print the text of the page" do
|
|
@session.visit('/with_simple_html')
|
|
expect(@session.text).to eq('Bar')
|
|
end
|
|
after { Capybara.default_selector = :xpath }
|
|
end
|
|
|
|
it "should strip whitespace" do
|
|
@session.visit('/with_html')
|
|
n = @session.find(:css, '#second')
|
|
expect(@session.find(:css, '#second').text).to match \
|
|
/\ADuis aute .* text with whitespace .* est laborum\.\z/
|
|
end
|
|
end
|