Skip to content

Commit

Permalink
[rb] unguard specs now working in Firefox 56
Browse files Browse the repository at this point in the history
  • Loading branch information
lmtierney committed Oct 2, 2017
1 parent 5e6b0c9 commit badf313
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ module WebDriver
expect(element.attribute(:value)).to eq('DoubleClicked')
end

it 'context clicks an element', except: {browser: :firefox} do
it 'context clicks an element' do
driver.navigate.to url_for('javascriptPage.html')
element = driver.find_element(id: 'doubleClickField')

Expand Down
2 changes: 1 addition & 1 deletion rb/spec/integration/selenium/webdriver/options_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ module WebDriver
expect(driver.manage.all_cookies).to be_empty
end

it 'should use DateTime for expires', except: {browser: %i[firefox safari]} do
it 'should use DateTime for expires', except: {browser: :safari} do
driver.navigate.to url_for('xhtmlTest.html')

expected = DateTime.new(2039)
Expand Down

0 comments on commit badf313

Please sign in to comment.