File tree Expand file tree Collapse file tree 2 files changed +4
-8
lines changed
rb/spec/integration/selenium/webdriver Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -37,9 +37,7 @@ class BiDi
37
37
expect ( browsing_context . id ) . not_to be_nil
38
38
end
39
39
40
- it 'can create a window with a reference context' , except : [ { browser : :chrome ,
41
- platform : %i[ linux macosx ] } ,
42
- { browser : :edge } ] do
40
+ it 'can create a window with a reference context' do
43
41
browsing_context = described_class . new ( driver : driver , type : :window ,
44
42
reference_context : driver . window_handle )
45
43
expect ( browsing_context . id ) . not_to be_nil
@@ -50,9 +48,7 @@ class BiDi
50
48
expect ( browsing_context . id ) . not_to be_nil
51
49
end
52
50
53
- it 'can create a tab with a reference context' , except : [ { browser : :chrome ,
54
- platform : %i[ linux macosx ] } ,
55
- { browser : :edge } ] do
51
+ it 'can create a tab with a reference context' do
56
52
browsing_context = described_class . new ( driver : driver , type : :tab , reference_context : driver . window_handle )
57
53
expect ( browsing_context . id ) . not_to be_nil
58
54
end
Original file line number Diff line number Diff line change @@ -421,7 +421,7 @@ module WebDriver
421
421
end
422
422
end
423
423
424
- it 'returns ARIA role' , only : { browser : %i[ chrome edge ] } do
424
+ it 'returns ARIA role' do
425
425
driver . navigate . to 'data:text/html,' \
426
426
"<div role='heading' aria-level='1'>Level 1 Header</div>" \
427
427
'<h1>Level 1 Header</h1>' \
@@ -431,7 +431,7 @@ module WebDriver
431
431
expect ( driver . find_element ( tag_name : 'h2' ) . aria_role ) . to eq ( 'alert' )
432
432
end
433
433
434
- it 'returns accessible name' , only : { browser : %i[ chrome edge ] } do
434
+ it 'returns accessible name' do
435
435
driver . navigate . to 'data:text/html,<h1>Level 1 Header</h1>'
436
436
expect ( driver . find_element ( tag_name : 'h1' ) . accessible_name ) . to eq ( 'Level 1 Header' )
437
437
end
You can’t perform that action at this time.
0 commit comments