Skip to content

Commit

Permalink
[ruby] Unignoring some tests in Chrome
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Sep 19, 2019
1 parent daa0b52 commit bce1ed8
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 @@ -160,7 +160,7 @@ module WebDriver
end

it 'can release pressed buttons via release action', except: {browser: :safari},
only: {browser: %i[edge edge_chrome firefox ie]} do
only: {browser: %i[edge chrome edge_chrome firefox ie]} do
driver.navigate.to url_for('javascriptPage.html')

event_input = driver.find_element(id: 'clickField')
Expand Down
2 changes: 1 addition & 1 deletion rb/spec/integration/selenium/webdriver/manager_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ module WebDriver

types = %i[tab window]
types.each do |type|
it "should be able to open a new #{type}", only: {browser: %i[safari_preview firefox ie]} do
it "should be able to open a new #{type}", only: {browser: %i[safari_preview firefox ie chrome edge_chrome]} do
before_window_handles = driver.window_handles.length
driver.manage.new_window(type)
expect(driver.window_handles.length).to eq(before_window_handles + 1)
Expand Down

0 comments on commit bce1ed8

Please sign in to comment.