# frozen_string_literal: true require 'spec_helper' require 'selenium-webdriver' require 'shared_selenium_session' require 'rspec/shared_spec_matchers' browser_options = ::Selenium::WebDriver::Firefox::Options.new browser_options.headless! if ENV['HEADLESS'] # browser_options.add_option("log", {"level": "trace"}) browser_options.profile = Selenium::WebDriver::Firefox::Profile.new.tap do |profile| profile['browser.download.dir'] = Capybara.save_path profile['browser.download.folderList'] = 2 profile['browser.helperApps.neverAsk.saveToDisk'] = 'text/csv' end Capybara.register_driver :selenium_firefox do |app| # ::Selenium::WebDriver.logger.level = "debug" Capybara::Selenium::Driver.new( app, browser: :firefox, options: browser_options, timeout: 31 # Get a trace level log from geckodriver # :driver_opts => { args: ['-vv'] } ) end Capybara.register_driver :selenium_firefox_not_clear_storage do |app| Capybara::Selenium::Driver.new( app, browser: :firefox, clear_local_storage: false, clear_session_storage: false, options: browser_options ) end module TestSessions SeleniumFirefox = Capybara::Session.new(:selenium_firefox, TestApp) end skipped_tests = %i[response_headers status_code trigger] $stdout.puts `#{Selenium::WebDriver::Firefox.driver_path} --version` if ENV['CI'] Capybara::SpecHelper.run_specs TestSessions::SeleniumFirefox, 'selenium', capybara_skip: skipped_tests do |example| case example.metadata[:full_description] when 'Capybara::Session selenium node #click should allow multiple modifiers' pending "Firefox doesn't generate an event for shift+control+click" if firefox_gte?(62, @session) && !Gem.win_platform? when /^Capybara::Session selenium node #double_click/ pending "selenium-webdriver/geckodriver doesn't generate double click event" if firefox_lt?(59, @session) when 'Capybara::Session selenium #accept_prompt should accept the prompt with a blank response when there is a default' pending "Geckodriver doesn't set a blank response in FF < 63 - https://bugzilla.mozilla.org/show_bug.cgi?id=1486485" if firefox_lt?(63, @session) when 'Capybara::Session selenium #attach_file with multipart form should fire change once for each set of files uploaded' pending 'Gekcodriver appends files so we have to first call clear for multiple files which creates an extra change ' \ 'if files are already set' when 'Capybara::Session selenium #attach_file with multipart form should fire change once when uploading multiple files from empty' pending "FF < 62 doesn't support setting all files at once" if firefox_lt?(62, @session) when 'Capybara::Session selenium #accept_confirm should work with nested modals' skip 'Broken in FF 63 - https://bugzilla.mozilla.org/show_bug.cgi?id=1487358' if firefox_gte?(63, @session) when 'Capybara::Session selenium #click_link can download a file' skip 'Need to figure out testing of file downloading on windows platform' if Gem.win_platform? when 'Capybara::Session selenium #reset_session! removes ALL cookies' pending "Geckodriver doesn't provide a way to remove cookies outside the current domain" when 'Capybara::Session selenium #attach_file with a block can upload by clicking the file input' pending "Geckodriver doesn't support clicking on file inputs" end end RSpec.describe 'Capybara::Session with firefox' do # rubocop:disable RSpec/MultipleDescribes include Capybara::SpecHelper include_examples 'Capybara::Session', TestSessions::SeleniumFirefox, :selenium_firefox include_examples Capybara::RSpecMatchers, TestSessions::SeleniumFirefox, :selenium_firefox end RSpec.describe Capybara::Selenium::Driver do let(:driver) { Capybara::Selenium::Driver.new(TestApp, browser: :firefox, options: browser_options) } describe '#quit' do it 'should reset browser when quit' do expect(driver.browser).to be_truthy driver.quit # access instance variable directly so we don't create a new browser instance expect(driver.instance_variable_get(:@browser)).to be_nil end context 'with errors' do let!(:original_browser) { driver.browser } after do # Ensure browser is actually quit so we don't leave hanging processe RSpec::Mocks.space.proxy_for(original_browser).reset original_browser.quit end it 'warns UnknownError returned during quit because the browser is probably already gone' do allow(driver).to receive(:warn) allow(driver.browser).to( receive(:quit) .and_raise(Selenium::WebDriver::Error::UnknownError, 'random message') ) expect { driver.quit }.not_to raise_error expect(driver.instance_variable_get(:@browser)).to be_nil expect(driver).to have_received(:warn).with(/random message/) end it 'ignores silenced UnknownError returned during quit because the browser is almost definitely already gone' do allow(driver).to receive(:warn) allow(driver.browser).to( receive(:quit) .and_raise(Selenium::WebDriver::Error::UnknownError, 'Error communicating with the remote browser') ) expect { driver.quit }.not_to raise_error expect(driver.instance_variable_get(:@browser)).to be_nil expect(driver).not_to have_received(:warn) end end end context 'storage' do describe '#reset!' do it 'clears storage by default' do session = TestSessions::SeleniumFirefox session.visit('/with_js') session.find(:css, '#set-storage').click session.reset! session.visit('/with_js') expect(session.driver.browser.local_storage.keys).to be_empty expect(session.driver.browser.session_storage.keys).to be_empty end it 'does not clear storage when false' do session = Capybara::Session.new(:selenium_firefox_not_clear_storage, TestApp) session.visit('/with_js') session.find(:css, '#set-storage').click session.reset! session.visit('/with_js') expect(session.driver.browser.local_storage.keys).not_to be_empty expect(session.driver.browser.session_storage.keys).not_to be_empty end end end context 'timeout' do it 'sets the http client read timeout' do expect(TestSessions::SeleniumFirefox.driver.browser.send(:bridge).http.read_timeout).to eq 31 end end end RSpec.describe Capybara::Selenium::Node do context '#click' do it 'warns when attempting on a table row' do session = TestSessions::SeleniumFirefox session.visit('/tables') tr = session.find(:css, '#agent_table tr:first-child') allow(tr.base).to receive(:warn) tr.click expect(tr.base).to have_received(:warn).with(/Clicking the first cell in the row instead/) end it 'should allow multiple modifiers', requires: [:js] do session = TestSessions::SeleniumFirefox session.visit('with_js') # Firefox v62+ doesn't generate an event for control+shift+click session.find(:css, '#click-test').click(:alt, :ctrl, :meta) # it also triggers a contextmenu event when control is held so don't check click type expect(session).to have_link('Has been alt control meta') end end context '#send_keys' do it 'should process space' do session = TestSessions::SeleniumFirefox session.visit('/form') session.find(:css, '#address1_city').send_keys('ocean', [:shift, :space, 'side']) expect(session.find(:css, '#address1_city').value).to eq 'ocean SIDE' end end end