File tree 2 files changed +5
-4
lines changed
rb/spec/integration/selenium/webdriver
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 22
22
module Selenium
23
23
module WebDriver
24
24
describe Driver , exclusive : { bidi : false , reason : 'Not yet implemented with BiDi' } do
25
- it_behaves_like 'driver that can be started concurrently' ,
26
- exclude : { browser : %i[ safari safari_preview ] } ,
27
- except : { driver : 'remote' , rbe : true , reason : 'Cannot start 2+ drivers at once.' }
25
+ it_behaves_like 'driver that can be started concurrently' , exclude : [
26
+ { browser : %i[ safari safari_preview ] } ,
27
+ { driver : 'remote' , rbe : true , reason : 'Cannot start 2+ drivers at once.' }
28
+ ]
28
29
29
30
it 'creates default capabilities' , exclude : { browser : %i[ safari safari_preview ] } do
30
31
reset_driver! do |driver |
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ module Firefox
37
37
end
38
38
39
39
it 'is able to use the same profile more than once' ,
40
- except : { driver : 'remote' , rbe : true , reason : 'Cannot start 2+ drivers at once.' } do
40
+ exclude : { driver : 'remote' , rbe : true , reason : 'Cannot start 2+ drivers at once.' } do
41
41
reset_driver! ( profile : profile ) do |driver1 |
42
42
expect { wait ( 5 ) . until { driver1 . find_element ( id : 'oneline' ) } } . not_to raise_error
43
43
reset_driver! ( profile : profile ) do |driver2 |
You can’t perform that action at this time.
0 commit comments