Skip to content

Commit e9aa80a

Browse files
committed
Clean up guards for specs passing against Marionette
1 parent d3603a8 commit e9aa80a

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

rb/spec/integration/selenium/webdriver/element_spec.rb

+1-2
Original file line numberDiff line numberDiff line change
@@ -178,9 +178,8 @@ module WebDriver
178178
end
179179
end
180180

181-
# Firefox - Pointer actions not in firefox stable yet
182181
# IE - https://github.com/SeleniumHQ/selenium/pull/4043
183-
it 'should drag and drop', except: {browser: %i[safari firefox ff_nightly ie]} do
182+
it 'should drag and drop', except: {browser: %i[safari firefox ie]} do
184183
driver.navigate.to url_for('dragAndDropTest.html')
185184

186185
img1 = driver.find_element(id: 'test1')

rb/spec/integration/selenium/webdriver/remote/element_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ module WebDriver
3030
driver.file_detector = nil
3131
end
3232

33-
it 'uses the file detector', only: {browser: %i[chrome ff_esr]} do
33+
it 'uses the file detector', only: {browser: %i[chrome ff_esr firefox ff_nightly]} do
3434
driver.navigate.to url_for('upload.html')
3535

3636
driver.find_element(id: 'upload').send_keys('random string')

0 commit comments

Comments
 (0)