2016-03-07 19:52:19 -05:00
|
|
|
# frozen_string_literal: true
|
2018-02-28 19:11:41 -05:00
|
|
|
|
2016-10-04 14:10:29 -04:00
|
|
|
Capybara::SpecHelper.spec "#evaluate_script", requires: [:js] do
|
2012-07-21 16:44:10 -04:00
|
|
|
it "should evaluate the given script and return whatever it produces" do
|
|
|
|
@session.visit('/with_js')
|
2013-11-14 12:43:36 -05:00
|
|
|
expect(@session.evaluate_script("1+3")).to eq(4)
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
2016-12-22 19:22:46 -05:00
|
|
|
|
2018-02-28 19:11:41 -05:00
|
|
|
it "should pass arguments to the script", requires: %i[js es_args] do
|
2016-12-22 19:22:46 -05:00
|
|
|
@session.visit('/with_js')
|
|
|
|
@session.evaluate_script("document.getElementById('change').textContent = arguments[0]", "Doodle Funk")
|
|
|
|
expect(@session).to have_css('#change', text: 'Doodle Funk')
|
|
|
|
end
|
|
|
|
|
2018-02-28 19:11:41 -05:00
|
|
|
it "should support passing elements as arguments to the script", requires: %i[js es_args] do
|
2016-12-22 19:22:46 -05:00
|
|
|
@session.visit('/with_js')
|
|
|
|
el = @session.find(:css, '#change')
|
|
|
|
@session.evaluate_script("arguments[0].textContent = arguments[1]", el, "Doodle Funk")
|
|
|
|
expect(@session).to have_css('#change', text: 'Doodle Funk')
|
|
|
|
end
|
|
|
|
|
2018-02-28 19:11:41 -05:00
|
|
|
it "should support returning elements", requires: %i[js es_args] do
|
2017-01-28 17:34:44 -05:00
|
|
|
@session.visit('/with_js')
|
2017-10-12 12:56:10 -04:00
|
|
|
@session.find(:css, '#change') # ensure page has loaded and element is available
|
2017-01-28 17:34:44 -05:00
|
|
|
el = @session.evaluate_script("document.getElementById('change')")
|
|
|
|
expect(el).to be_instance_of(Capybara::Node::Element)
|
|
|
|
expect(el).to eq(@session.find(:css, '#change'))
|
|
|
|
end
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|