We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4520217 commit a68f2cdCopy full SHA for a68f2cd
2 files changed
sig/lib/appium_lib_core/common/base/driver.rbs
@@ -2,6 +2,8 @@ module Appium
2
module Core
3
class Base
4
class Driver < Selenium::WebDriver::Driver
5
+ extend Forwardable
6
+
7
@wait_timeout: untyped
8
9
@wait_interval: untyped
sig/lib/appium_lib_core/driver.rbs
@@ -79,6 +79,16 @@ module Appium
79
attr_reader path: String
80
81
def initialize: (Hash[String | Symbol, String] capabilities) -> void
82
83
+ def valid?: () -> bool
84
85
+ private
86
87
+ def resolve_addresses: (String host) -> Array[String]
88
89
+ def ip_literal?: (String host) -> bool
90
91
+ def disallowed?: (String ip) -> bool
92
end
93
94
class Driver
0 commit comments