File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
sig/lib/selenium/webdriver/common
spec/integration/selenium/webdriver/spec_support Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,9 +17,9 @@ module Selenium
17
17
18
18
def io : () -> IO
19
19
20
- def ignore : (*Symbol ids) -> Array[Symbol]
20
+ def ignore : (*Symbol | Array[Symbol] ids) -> Array[Symbol]
21
21
22
- def allow : (*Symbol ids) -> Array[Symbol]
22
+ def allow : (*Symbol | Array[Symbol] ids) -> Array[Symbol]
23
23
24
24
def debug : (String message, ?id: Symbol | Array[Symbol] id) ?{ () -> void } -> void
25
25
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ def initialize
28
28
@create_driver_error_count = 0
29
29
30
30
$LOAD_PATH. insert ( 0 , root . join ( 'bazel-bin/rb/lib' ) . to_s ) if File . exist? ( root . join ( 'bazel-bin/rb/lib' ) )
31
- WebDriver . logger . ignore ( %i[ logger_info ] )
31
+ WebDriver . logger . ignore ( : logger_info)
32
32
SeleniumManager . bin_path = root . join ( 'bazel-bin/rb/bin' ) . to_s if File . exist? ( root . join ( 'bazel-bin/rb/bin' ) )
33
33
34
34
@driver = ENV . fetch ( 'WD_SPEC_DRIVER' , 'chrome' ) . tr ( '-' , '_' ) . to_sym
You can’t perform that action at this time.
0 commit comments