-
-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Expanded the features RBS for chrome and chromium, and added has_cast…
…ing and has_launching.rbs
- Loading branch information
Showing
4 changed files
with
31 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
rb/sig/lib/selenium/webdriver/common/driver_extensions/has_casting.rbs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
module Selenium | ||
module WebDriver | ||
module DriverExtensions | ||
module HasCasting | ||
def cast_sinks: () -> Array[String] | ||
|
||
def cast_sink_to_use=: (String name) -> untyped | ||
|
||
def start_cast_tab_mirroring: (String name) -> untyped | ||
|
||
def start_cast_desktop_mirroring: (String name) -> untyped | ||
|
||
def cast_issue_message: () -> String | ||
|
||
def stop_casting: (String name) -> void | ||
end | ||
end | ||
end | ||
end |
9 changes: 9 additions & 0 deletions
9
rb/sig/lib/selenium/webdriver/common/driver_extensions/has_launching.rbs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
module Selenium | ||
module WebDriver | ||
module DriverExtensions | ||
module HasLaunching | ||
def launch_app: (String id) -> String | ||
end | ||
end | ||
end | ||
end |