Class: Selenium::WebDriver::BiDi::Protocol::Script::LocalValue Private
- Inherits:
-
Serialization::Union
- Object
- Serialization::Union
- Selenium::WebDriver::BiDi::Protocol::Script::LocalValue
- Defined in:
- lib/selenium/webdriver/bidi/protocol/script.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Class Method Summary collapse
- .array ⇒ Object private
- .bigint ⇒ Object private
- .boolean ⇒ Object private
- .channel ⇒ Object private
- .date ⇒ Object private
- .map ⇒ Object private
- .null ⇒ Object private
- .number ⇒ Object private
- .object ⇒ Object private
- .regexp ⇒ Object private
- .set ⇒ Object private
- .string ⇒ Object private
- .undefined ⇒ Object private
Methods inherited from Serialization::Union
build, discriminator, fallback, from_json, object_only, presence, scalar_values, valid_outbound?, variants
Class Method Details
.array ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
183 |
# File 'lib/selenium/webdriver/bidi/protocol/script.rb', line 183 def self.array(**) = Script::ArrayLocalValue.new(**) |
.bigint ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
181 |
# File 'lib/selenium/webdriver/bidi/protocol/script.rb', line 181 def self.bigint(**) = Script::BigIntValue.new(**) |
.boolean ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
180 |
# File 'lib/selenium/webdriver/bidi/protocol/script.rb', line 180 def self.boolean(**) = Script::BooleanValue.new(**) |
.channel ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
182 |
# File 'lib/selenium/webdriver/bidi/protocol/script.rb', line 182 def self.channel(**) = Script::ChannelValue.new(**) |
.date ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
184 |
# File 'lib/selenium/webdriver/bidi/protocol/script.rb', line 184 def self.date(**) = Script::DateLocalValue.new(**) |
.map ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
185 |
# File 'lib/selenium/webdriver/bidi/protocol/script.rb', line 185 def self.map(**) = Script::MapLocalValue.new(**) |
.null ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
177 |
# File 'lib/selenium/webdriver/bidi/protocol/script.rb', line 177 def self.null(**) = Script::NullValue.new(**) |
.number ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
179 |
# File 'lib/selenium/webdriver/bidi/protocol/script.rb', line 179 def self.number(**) = Script::NumberValue.new(**) |
.object ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
186 |
# File 'lib/selenium/webdriver/bidi/protocol/script.rb', line 186 def self.object(**) = Script::ObjectLocalValue.new(**) |
.regexp ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
187 |
# File 'lib/selenium/webdriver/bidi/protocol/script.rb', line 187 def self.regexp(**) = Script::RegExpLocalValue.new(**) |
.set ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
188 |
# File 'lib/selenium/webdriver/bidi/protocol/script.rb', line 188 def self.set(**) = Script::SetLocalValue.new(**) |
.string ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
178 |
# File 'lib/selenium/webdriver/bidi/protocol/script.rb', line 178 def self.string(**) = Script::StringValue.new(**) |
.undefined ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
176 |
# File 'lib/selenium/webdriver/bidi/protocol/script.rb', line 176 def self.undefined(**) = Script::UndefinedValue.new(**) |