Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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