Skip to content

Commit a961ede

Browse files
committed
[rb] Update tests that pass on Edge 125
1 parent 99feb03 commit a961ede

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

rb/spec/integration/selenium/webdriver/bidi_spec.rb

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ module WebDriver
3030
# do nothing
3131
end
3232

33-
it 'gets session status', except: {browser: %i[edge],
34-
reason: 'https://bugs.chromium.org/p/chromedriver/issues/detail?id=4676'} do
33+
it 'gets session status' do
3534
status = driver.bidi.session.status
3635
expect(status).to respond_to(:ready)
3736
expect(status.message).not_to be_empty
@@ -61,9 +60,7 @@ module WebDriver
6160
)
6261
end
6362

64-
it 'does not close BiDi session if at least one window is opened',
65-
except: {browser: %i[edge],
66-
reason: 'https://bugs.chromium.org/p/chromedriver/issues/detail?id=4676'} do
63+
it 'does not close BiDi session if at least one window is opened' do
6764
status = driver.bidi.session.status
6865
expect(status.ready).to be false
6966
expect(status.message).to be_a String
@@ -79,9 +76,7 @@ module WebDriver
7976
expect(status_after_closing.message).to be_a String
8077
end
8178

82-
it 'closes BiDi session if last window is closed',
83-
except: {browser: %i[edge],
84-
reason: 'https://bugs.chromium.org/p/chromedriver/issues/detail?id=4676'} do
79+
it 'closes BiDi session if last window is closed' do
8580
status = driver.bidi.session.status
8681
expect(status.ready).to be false
8782
expect(status.message).to be_a String

0 commit comments

Comments
 (0)