Class: Selenium::WebDriver::Remote::Response
- Inherits:
-
Object
- Object
- Selenium::WebDriver::Remote::Response
- Defined in:
- lib/selenium/webdriver/remote/response.rb
Instance Attribute Summary collapse
-
#code ⇒ Object
readonly
Returns the value of attribute code.
-
#payload ⇒ Object
Returns the value of attribute payload.
Instance Method Summary collapse
- #[](key) ⇒ Object
- #error ⇒ Object
- #error_message ⇒ Object
-
#initialize(code, payload = nil) ⇒ Response
constructor
A new instance of Response.
Constructor Details
#initialize(code, payload = nil) ⇒ Response
Returns a new instance of Response.
11 12 13 14 15 16 |
# File 'lib/selenium/webdriver/remote/response.rb', line 11 def initialize(code, payload = nil) @code = code @payload = payload || {} assert_ok end |
Instance Attribute Details
#code ⇒ Object (readonly)
Returns the value of attribute code.
8 9 10 |
# File 'lib/selenium/webdriver/remote/response.rb', line 8 def code @code end |
#payload ⇒ Object
Returns the value of attribute payload.
8 9 10 |
# File 'lib/selenium/webdriver/remote/response.rb', line 8 def payload @payload end |
Instance Method Details
#[](key) ⇒ Object
37 38 39 |
# File 'lib/selenium/webdriver/remote/response.rb', line 37 def [](key) @payload[key] end |
#error ⇒ Object
18 19 20 21 22 23 24 25 26 |
# File 'lib/selenium/webdriver/remote/response.rb', line 18 def error klass = Error.for_code(@payload['status']) || return ex = klass.new() ex.set_backtrace(caller) add_backtrace ex ex end |
#error_message ⇒ Object
28 29 30 31 32 33 34 35 |
# File 'lib/selenium/webdriver/remote/response.rb', line 28 def val = @payload['value'] msg = val['message'] or return "" msg << " (#{ val['class'] })" if val['class'] msg end |