Skip to content

Commit

Permalink
[rb] Update selenium manager types (#14189)
Browse files Browse the repository at this point in the history
Co-authored-by: aguspe <agustin.pe94@gmail.com>
  • Loading branch information
aguspe and aguspe committed Jul 9, 2024
1 parent f096422 commit df75c3a
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions rb/sig/lib/selenium/webdriver/common/selenium_manager.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,27 @@ module Selenium
include _Platform
include Open3

self.@bin_path: untyped
self.@bin_path: String

self.@binary: untyped
self.@binary: String

attr_writer self.bin_path: untyped
attr_writer self.bin_path: String

def self.bin_path: () -> untyped
def self.bin_path: () -> String

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

private

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

def self.binary: () -> untyped
def self.binary: () -> String

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

def self.run: (*untyped command) -> untyped
def self.run: (String | Array[String] command) -> Hash[String, Array[String]]

def self.platform_location: -> String
end
end
end

0 comments on commit df75c3a

Please sign in to comment.