2016-03-07 16:52:19 -08:00
|
|
|
# frozen_string_literal: true
|
2010-09-17 18:56:32 -05:00
|
|
|
require 'spec_helper'
|
2013-11-14 22:25:00 +01:00
|
|
|
require "selenium-webdriver"
|
|
|
|
|
2016-09-01 15:46:56 -07:00
|
|
|
RSpec.shared_examples "Capybara::Session" do |session, mode|
|
|
|
|
let(:session) {session}
|
2016-07-26 11:15:35 -07:00
|
|
|
|
2009-11-14 10:44:46 +01:00
|
|
|
context 'with selenium driver' do
|
|
|
|
before do
|
2016-09-01 15:46:56 -07:00
|
|
|
@session = session
|
2009-11-14 10:44:46 +01:00
|
|
|
end
|
2009-12-11 22:40:23 +01:00
|
|
|
|
2009-11-14 10:44:46 +01:00
|
|
|
describe '#driver' do
|
2009-12-11 22:40:23 +01:00
|
|
|
it "should be a selenium driver" do
|
2013-11-14 09:43:36 -08:00
|
|
|
expect(@session.driver).to be_an_instance_of(Capybara::Selenium::Driver)
|
2009-11-14 10:44:46 +01:00
|
|
|
end
|
|
|
|
end
|
2009-12-11 22:40:23 +01:00
|
|
|
|
2009-11-14 10:44:46 +01:00
|
|
|
describe '#mode' do
|
|
|
|
it "should remember the mode" do
|
2016-09-01 15:46:56 -07:00
|
|
|
expect(@session.mode).to eq(mode)
|
2009-11-14 10:44:46 +01:00
|
|
|
end
|
|
|
|
end
|
2009-12-11 22:40:23 +01:00
|
|
|
|
2014-01-16 23:57:06 -08:00
|
|
|
describe "#reset!" do
|
|
|
|
it "freshly reset session should not be touched" do
|
|
|
|
@session.instance_variable_set(:@touched, true)
|
|
|
|
@session.reset!
|
2013-11-14 09:43:36 -08:00
|
|
|
expect(@session.instance_variable_get(:@touched)).to eq false
|
2014-01-16 23:57:06 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-07-13 13:15:44 +02:00
|
|
|
describe "exit codes" do
|
|
|
|
before do
|
|
|
|
@current_dir = Dir.getwd
|
2012-07-13 13:28:33 +02:00
|
|
|
Dir.chdir(File.join(File.dirname(__FILE__), '..'))
|
2012-07-13 13:15:44 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
after do
|
|
|
|
Dir.chdir(@current_dir)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should have return code 1 when running selenium_driver_rspec_failure.rb" do
|
2016-10-13 19:50:03 -07:00
|
|
|
env = { 'SELENIUM_BROWSER' => @session.driver.options[:browser].to_s,
|
|
|
|
'LEGACY_FIREFOX' => (mode == :selenium_firefox ? 'TRUE' : nil) }
|
2016-10-19 11:46:08 -07:00
|
|
|
system(env, 'rspec spec/fixtures/selenium_driver_rspec_failure.rb', out: File::NULL, err: File::NULL)
|
2016-09-01 10:30:56 -07:00
|
|
|
expect($?.exitstatus).to eq(1)
|
2012-07-13 13:15:44 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should have return code 0 when running selenium_driver_rspec_success.rb" do
|
2016-10-13 19:50:03 -07:00
|
|
|
env = { 'SELENIUM_BROWSER' => @session.driver.options[:browser].to_s,
|
|
|
|
'LEGACY_FIREFOX' => (mode == :selenium_firefox ? 'TRUE' : nil) }
|
2016-10-19 11:46:08 -07:00
|
|
|
system(env, 'rspec spec/fixtures/selenium_driver_rspec_success.rb', out: File::NULL, err: File::NULL)
|
2016-09-01 12:02:22 -07:00
|
|
|
expect($?.exitstatus).to eq(0)
|
2012-07-13 13:15:44 +02:00
|
|
|
end
|
|
|
|
end
|
2015-04-12 20:32:12 -07:00
|
|
|
|
2014-07-02 19:31:13 -07:00
|
|
|
describe "#accept_alert" do
|
2014-07-02 19:10:30 -07:00
|
|
|
it "supports a blockless mode" do
|
|
|
|
@session.visit('/with_js')
|
|
|
|
@session.click_link('Open alert')
|
|
|
|
@session.accept_alert
|
2016-09-01 15:46:56 -07:00
|
|
|
expect{@session.driver.browser.switch_to.alert}.to raise_error(Selenium::WebDriver::Error::NoAlertPresentError)
|
2014-07-02 19:10:30 -07:00
|
|
|
end
|
|
|
|
end
|
2015-04-12 20:32:12 -07:00
|
|
|
|
2016-10-04 11:10:29 -07:00
|
|
|
context "#fill_in with { :clear => :backspace } fill_option", requires: [:js] do
|
2015-04-12 20:32:12 -07:00
|
|
|
it 'should fill in a field, replacing an existing value' do
|
|
|
|
@session.visit('/form')
|
2016-10-04 11:10:29 -07:00
|
|
|
@session.fill_in('form_first_name', with: 'Harry',
|
2015-04-12 20:32:12 -07:00
|
|
|
fill_options: { clear: :backspace} )
|
|
|
|
expect(@session.find(:fillable_field, 'form_first_name').value).to eq('Harry')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should only trigger onchange once' do
|
|
|
|
@session.visit('/with_js')
|
2016-10-04 11:10:29 -07:00
|
|
|
@session.fill_in('with_change_event', with: 'some value',
|
|
|
|
fill_options: { :clear => :backspace })
|
2015-04-12 20:32:12 -07:00
|
|
|
# click outside the field to trigger the change event
|
|
|
|
@session.find(:css, 'body').click
|
2016-10-04 11:10:29 -07:00
|
|
|
expect(@session.find(:css, '.change_event_triggered', match: :one)).to have_text 'some value'
|
2015-04-12 20:32:12 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should trigger change when clearing field' do
|
|
|
|
@session.visit('/with_js')
|
2016-10-04 11:10:29 -07:00
|
|
|
@session.fill_in('with_change_event', with: '',
|
|
|
|
fill_options: { :clear => :backspace })
|
2015-04-12 20:32:12 -07:00
|
|
|
# click outside the field to trigger the change event
|
|
|
|
@session.find(:css, 'body').click
|
2016-10-04 11:10:29 -07:00
|
|
|
expect(@session).to have_selector(:css, '.change_event_triggered', match: :one)
|
2015-04-12 20:32:12 -07:00
|
|
|
end
|
|
|
|
end
|
2015-08-10 01:55:56 +09:00
|
|
|
|
2015-04-12 21:25:13 -07:00
|
|
|
context "#fill_in with { clear: :none } fill_options" do
|
|
|
|
it 'should append to content in a field' do
|
|
|
|
@session.visit('/form')
|
2016-10-04 11:10:29 -07:00
|
|
|
@session.fill_in('form_first_name', with: 'Harry',
|
2015-04-12 21:25:13 -07:00
|
|
|
fill_options: { clear: :none} )
|
|
|
|
expect(@session.find(:fillable_field, 'form_first_name').value).to eq('JohnHarry')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "#fill_in with { clear: Array } fill_options" do
|
2016-04-05 09:33:19 -07:00
|
|
|
it 'should pass the array through to the element' do
|
2017-01-02 17:17:35 -08:00
|
|
|
pending "selenium-webdriver/geckodriver doesn't support complex sets of characters" if @session.driver.marionette?
|
2017-01-21 12:59:54 -08:00
|
|
|
#this is mainly for use with [[:control, 'a'], :backspace] - however since that is platform dependant I'm testing with something less useful
|
2015-04-12 21:25:13 -07:00
|
|
|
@session.visit('/form')
|
2016-10-04 11:10:29 -07:00
|
|
|
@session.fill_in('form_first_name', with: 'Harry',
|
2015-04-12 21:25:13 -07:00
|
|
|
fill_options: { clear: [[:shift, 'abc'], :backspace] } )
|
|
|
|
expect(@session.find(:fillable_field, 'form_first_name').value).to eq('JohnABHarry')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-08-10 01:55:56 +09:00
|
|
|
describe "#path" do
|
|
|
|
it "returns xpath" do
|
2015-08-20 14:35:15 -07:00
|
|
|
# this is here because it is testing for an XPath that is specific to the algorithm used in the selenium driver
|
|
|
|
@session.visit('/path')
|
2015-08-10 22:53:38 +09:00
|
|
|
element = @session.find(:link, 'Second Link')
|
|
|
|
expect(element.path).to eq('/html/body/div[2]/a[1]')
|
2015-08-10 01:55:56 +09:00
|
|
|
end
|
|
|
|
end
|
2017-01-27 11:11:13 -08:00
|
|
|
|
|
|
|
describe "#evaluate_script" do
|
2017-01-28 14:34:44 -08:00
|
|
|
it "can return an element" do
|
2017-01-27 11:11:13 -08:00
|
|
|
@session.visit('/form')
|
|
|
|
element = @session.evaluate_script("document.getElementById('form_title')")
|
|
|
|
expect(element).to eq @session.find(:id, 'form_title')
|
|
|
|
end
|
2017-01-28 14:34:44 -08:00
|
|
|
|
|
|
|
it "can return arrays of nested elements" do
|
|
|
|
@session.visit('/form')
|
|
|
|
elements = @session.evaluate_script('document.querySelectorAll("#form_city option")')
|
|
|
|
elements.each do |el|
|
|
|
|
expect(el).to be_instance_of Capybara::Node::Element
|
|
|
|
end
|
|
|
|
expect(elements).to eq @session.find(:css, '#form_city').all(:css, 'option').to_a
|
|
|
|
end
|
|
|
|
|
|
|
|
it "can return hashes with elements" do
|
|
|
|
@session.visit('/form')
|
|
|
|
result = @session.evaluate_script("{ a: document.getElementById('form_title'), b: {c: document.querySelectorAll('#form_city option')}}")
|
|
|
|
expect(result).to eq({
|
|
|
|
'a' => @session.find(:id, 'form_title'),
|
|
|
|
'b' => {
|
|
|
|
'c' => @session.find(:css, '#form_city').all(:css, 'option').to_a
|
|
|
|
}
|
|
|
|
})
|
|
|
|
end
|
2017-01-27 11:11:13 -08:00
|
|
|
end
|
2009-11-14 10:44:46 +01:00
|
|
|
end
|
|
|
|
end
|