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

fix comment [ci skip]

This commit is contained in:
Thomas Walpole 2017-01-21 12:59:54 -08:00
parent 92098f44b0
commit 70daf30712

View file

@ -103,7 +103,7 @@ RSpec.shared_examples "Capybara::Session" do |session, mode|
context "#fill_in with { clear: Array } fill_options" do
it 'should pass the array through to the element' do
pending "selenium-webdriver/geckodriver doesn't support complex sets of characters" if @session.driver.marionette?
#this is mainly for use with [[:ctrl, 'a'], :backspace] - however since that is platform dependant I'm testing with something less useful
#this is mainly for use with [[:control, 'a'], :backspace] - however since that is platform dependant I'm testing with something less useful
@session.visit('/form')
@session.fill_in('form_first_name', with: 'Harry',
fill_options: { clear: [[:shift, 'abc'], :backspace] } )