Skip to content

Commit 488df1e

Browse files
aguspesandeepsuryaprasad
authored andcommitted
[rb] Update selenium manager types (SeleniumHQ#14189)
Co-authored-by: aguspe <[email protected]>
1 parent 135f1cd commit 488df1e

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

rb/sig/lib/selenium/webdriver/common/selenium_manager.rbs

+9-7
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,27 @@ module Selenium
44
include _Platform
55
include Open3
66

7-
self.@bin_path: untyped
7+
self.@bin_path: String
88

9-
self.@binary: untyped
9+
self.@binary: String
1010

11-
attr_writer self.bin_path: untyped
11+
attr_writer self.bin_path: String
1212

13-
def self.bin_path: () -> untyped
13+
def self.bin_path: () -> String
1414

15-
def self.driver_path: (untyped options) -> untyped
15+
def self.binary_paths: (Array[String] arguments) -> Hash[untyped, Array[String]]
1616

1717
private
1818

1919
def self.generate_command: (untyped binary, untyped options) -> untyped
2020

21-
def self.binary: () -> untyped
21+
def self.binary: () -> String
2222

2323
def self.validate_location: (untyped location) -> untyped
2424

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
2628
end
2729
end
2830
end

0 commit comments

Comments
 (0)