Class: Selenium::WebDriver::BiDi::InterceptedAuth

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

Instance Attribute Summary

Attributes inherited from InterceptedItem

#network, #request

Instance Method Summary collapse

Methods inherited from InterceptedItem

#id, #initialize

Constructor Details

This class inherits a constructor from Selenium::WebDriver::BiDi::InterceptedItem

Instance Method Details

#authenticate(username, password) ⇒ Object



24
25
26
# File 'rb/lib/selenium/webdriver/bidi/network/intercepted_auth.rb', line 24

def authenticate(username, password)
  network.continue_with_auth(id, username, password)
end

#cancelObject



32
33
34
# File 'rb/lib/selenium/webdriver/bidi/network/intercepted_auth.rb', line 32

def cancel
  network.cancel_auth(id)
end

#skipObject



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

def skip
  network.continue_without_auth(id)
end