Class: Selenium::WebDriver::BiDi::InterceptedResponse
- Inherits:
-
InterceptedItem
- Object
- InterceptedItem
- Selenium::WebDriver::BiDi::InterceptedResponse
- Defined in:
- rb/lib/selenium/webdriver/bidi/network/intercepted_response.rb
Instance Attribute Summary collapse
-
#body ⇒ Object
Returns the value of attribute body.
-
#reason ⇒ Object
Returns the value of attribute reason.
-
#status ⇒ Object
Returns the value of attribute status.
Attributes inherited from InterceptedItem
Instance Method Summary collapse
- #continue ⇒ Object
- #cookies(cookies = {}) ⇒ Object
- #credentials(username: nil, password: nil) ⇒ Object
- #headers ⇒ Object
-
#initialize(network, request) ⇒ InterceptedResponse
constructor
A new instance of InterceptedResponse.
- #provide_response ⇒ Object
Methods inherited from InterceptedItem
Constructor Details
#initialize(network, request) ⇒ InterceptedResponse
Returns a new instance of InterceptedResponse.
31 32 33 34 35 36 |
# File 'rb/lib/selenium/webdriver/bidi/network/intercepted_response.rb', line 31 def initialize(network, request) super @reason = nil @status = nil @body = nil end |
Instance Attribute Details
#body ⇒ Object
Returns the value of attribute body.
29 30 31 |
# File 'rb/lib/selenium/webdriver/bidi/network/intercepted_response.rb', line 29 def body @body end |
#reason ⇒ Object
Returns the value of attribute reason.
28 29 30 |
# File 'rb/lib/selenium/webdriver/bidi/network/intercepted_response.rb', line 28 def reason @reason end |
#status ⇒ Object
Returns the value of attribute status.
28 29 30 |
# File 'rb/lib/selenium/webdriver/bidi/network/intercepted_response.rb', line 28 def status @status end |
Instance Method Details
#continue ⇒ Object
38 39 40 41 42 43 44 45 46 47 |
# File 'rb/lib/selenium/webdriver/bidi/network/intercepted_response.rb', line 38 def continue network.continue_response( id: id, cookies: .as_json, headers: headers.as_json, credentials: credentials.as_json, reason: reason, status: status ) end |
#cookies(cookies = {}) ⇒ Object
68 69 70 |
# File 'rb/lib/selenium/webdriver/bidi/network/intercepted_response.rb', line 68 def ( = {}) @cookies ||= Cookies.new() end |
#credentials(username: nil, password: nil) ⇒ Object
60 61 62 |
# File 'rb/lib/selenium/webdriver/bidi/network/intercepted_response.rb', line 60 def credentials(username: nil, password: nil) @credentials ||= Credentials.new(username: username, password: password) end |
#headers ⇒ Object
64 65 66 |
# File 'rb/lib/selenium/webdriver/bidi/network/intercepted_response.rb', line 64 def headers @headers ||= Headers.new end |
#provide_response ⇒ Object
49 50 51 52 53 54 55 56 57 58 |
# File 'rb/lib/selenium/webdriver/bidi/network/intercepted_response.rb', line 49 def provide_response network.provide_response( id: id, cookies: .as_json, headers: headers.as_json, body: body, reason: reason, status: status ) end |