Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[rb] Update selenium manager types #14189

Merged
merged 12 commits into from
Jul 9, 2024
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
Loading