Skip to content

Commit b56d110

Browse files
committed
Uningore passing IE driver specs
1 parent 2959880 commit b56d110

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

rb/spec/integration/selenium/webdriver/action_builder_spec.rb

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,7 @@ module WebDriver
134134
expect(element.attribute(:value)).to eq('Clicked')
135135
end
136136

137-
# https://github.com/SeleniumHQ/selenium/pull/4043
138-
it 'can drag and drop', except: {browser: :ie} do
137+
it 'can drag and drop' do
139138
driver.navigate.to url_for('droppableItems.html')
140139

141140
draggable = long_wait.until do
@@ -166,7 +165,7 @@ module WebDriver
166165
expect(element.attribute(:value)).to eq('ContextClicked')
167166
end
168167

169-
it 'can release pressed buttons via release action', except: {browser: :safari}, only: {browser: :firefox} do
168+
it 'can release pressed buttons via release action', except: {browser: :safari}, only: {browser: %i[firefox ie]} do
170169
driver.navigate.to url_for('javascriptPage.html')
171170

172171
event_input = driver.find_element(id: 'clickField')

rb/spec/integration/selenium/webdriver/target_locator_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ module WebDriver
127127
end
128128
end
129129

130-
context 'with more than two windows', except: {browser: %i[ie safari safari_preview]} do
130+
context 'with more than two windows', except: {browser: %i[safari safari_preview]} do
131131
after do
132132
# We need to reset driver because browsers behave differently
133133
# when trying to open the same blank target in a new window.

rb/spec/integration/selenium/webdriver/window_spec.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ module WebDriver
122122
exclude: {driver: :remote, browser: :firefox, platform: :linux} do
123123
window.size = old_size = Dimension.new(200, 200)
124124

125+
window.full_screen
125126
wait.until { window.size != old_size }
126127

127128
new_size = window.size

0 commit comments

Comments
 (0)