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