Class: Selenium::WebDriver::BiDi::InterceptedRequest

Inherits:
InterceptedItem show all
Defined in:
rb/lib/selenium/webdriver/bidi/network/intercepted_request.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) ⇒ InterceptedRequest

Returns a new instance of InterceptedRequest.



30
31
32
33
34
35
# File 'rb/lib/selenium/webdriver/bidi/network/intercepted_request.rb', line 30

def initialize(network, request)
  super
  @method = nil
  @url = nil
  @body = nil
end

Instance Attribute Details

#bodyObject

Returns the value of attribute body.



28
29
30
# File 'rb/lib/selenium/webdriver/bidi/network/intercepted_request.rb', line 28

def body
  @body
end

#methodObject

Returns the value of attribute method.



27
28
29
# File 'rb/lib/selenium/webdriver/bidi/network/intercepted_request.rb', line 27

def method
  @method
end

#urlObject

Returns the value of attribute url.



27
28
29
# File 'rb/lib/selenium/webdriver/bidi/network/intercepted_request.rb', line 27

def url
  @url
end

Instance Method Details

#continueObject



37
38
39
40
41
42
43
44
45
46
# File 'rb/lib/selenium/webdriver/bidi/network/intercepted_request.rb', line 37

def continue
  network.continue_request(
    id: id,
    body: body,
    cookies: cookies.as_json,
    headers: headers.as_json,
    method: method,
    url: url
  )
end

#cookies(cookies = {}) ⇒ Object



63
64
65
# File 'rb/lib/selenium/webdriver/bidi/network/intercepted_request.rb', line 63

def cookies(cookies = {})
  @cookies ||= Cookies.new(cookies)
end

#failObject



48
49
50
# File 'rb/lib/selenium/webdriver/bidi/network/intercepted_request.rb', line 48

def fail
  network.fail_request(id)
end

#headersObject



59
60
61
# File 'rb/lib/selenium/webdriver/bidi/network/intercepted_request.rb', line 59

def headers
  @headers ||= Headers.new
end