File tree 1 file changed +9
-7
lines changed
rb/sig/lib/selenium/webdriver/common
1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -4,25 +4,27 @@ module Selenium
4
4
include _Platform
5
5
include Open3
6
6
7
- self .@bin_path: untyped
7
+ self .@bin_path: String
8
8
9
- self .@binary: untyped
9
+ self .@binary: String
10
10
11
- attr_writer self .bin_path: untyped
11
+ attr_writer self .bin_path: String
12
12
13
- def self.bin_path : () -> untyped
13
+ def self.bin_path : () -> String
14
14
15
- def self.driver_path : (untyped options ) -> untyped
15
+ def self.binary_paths : (Array[String] arguments ) -> Hash[ untyped , Array[String]]
16
16
17
17
private
18
18
19
19
def self.generate_command : (untyped binary, untyped options) -> untyped
20
20
21
- def self.binary : () -> untyped
21
+ def self.binary : () -> String
22
22
23
23
def self.validate_location : (untyped location) -> untyped
24
24
25
- def self.run : (*untyped command) -> untyped
25
+ def self.run : (String | Array[String] command) -> Hash[String, Array[String]]
26
+
27
+ def self.platform_location : -> String
26
28
end
27
29
end
28
30
end
You can’t perform that action at this time.
0 commit comments