class Selenium::WebDriver::BiDi::InterceptedAuth

@api private

Public Instance Methods

authenticate(username, password) click to toggle source
# File lib/selenium/webdriver/bidi/network/intercepted_auth.rb, line 28
def authenticate(username, password)
  network.continue_with_auth(id, username, password)
end
cancel() click to toggle source
# File lib/selenium/webdriver/bidi/network/intercepted_auth.rb, line 36
def cancel
  network.cancel_auth(id)
end
skip() click to toggle source
# File lib/selenium/webdriver/bidi/network/intercepted_auth.rb, line 32
def skip
  network.continue_without_auth(id)
end