1
0
Fork 0
mirror of https://github.com/teamcapybara/capybara.git synced 2022-11-09 12:08:07 -05:00
teamcapybara--capybara/lib/capybara/spec/session/evaluate_async_script_spec.rb

24 lines
1.1 KiB
Ruby
Raw Normal View History

2017-10-20 18:18:00 -04:00
# frozen_string_literal: true
2018-02-28 19:11:41 -05:00
2017-10-20 18:18:00 -04:00
Capybara::SpecHelper.spec "#evaluate_async_script", requires: [:js] do
it "should evaluate the given script and return whatever it produces" do
@session.visit('/with_js')
expect(@session.evaluate_async_script("arguments[0](4)")).to eq(4)
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
2017-10-20 18:18:00 -04:00
@session.visit('/with_js')
el = @session.find(:css, '#drag p')
result = @session.evaluate_async_script("arguments[2]([arguments[0].innerText, arguments[1]])", el, "Doodle Funk")
expect(result).to eq ["This is a draggable element.", "Doodle Funk"]
end
2018-02-28 19:11:41 -05:00
it "should support returning elements after asynchronous operation", requires: %i[js es_args] do
2017-10-20 18:18:00 -04:00
@session.visit('/with_js')
@session.find(:css, '#change') # ensure page has loaded and element is available
el = @session.evaluate_async_script("var cb = arguments[0]; setTimeout(function(){ cb(document.getElementById('change')) }, 100)")
expect(el).to be_instance_of(Capybara::Node::Element)
expect(el).to eq(@session.find(:css, '#change'))
end
end