Class: Selenium::WebDriver::BiDi::InterceptedResponse

Inherits:
InterceptedItem show all
Defined in:
rb/lib/selenium/webdriver/bidi/network/intercepted_response.rb

Instance Attribute Summary collapse

Attributes inherited from InterceptedItem

#network, #request

Instance Method Summary collapse

Methods inherited from InterceptedItem

#id

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

#bodyObject

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

#reasonObject

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

#statusObject

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

#continueObject



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: 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 = {})
  @cookies ||= Cookies.new(cookies)
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

#headersObject



64
65
66
# File 'rb/lib/selenium/webdriver/bidi/network/intercepted_response.rb', line 64

def headers
  @headers ||= Headers.new
end

#provide_responseObject



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: cookies.as_json,
    headers: headers.as_json,
    body: body,
    reason: reason,
    status: status
  )
end