Class: Selenium::WebDriver::BiDi::InterceptedAuth
  
  
  
  Instance Attribute Summary
  
  
  #network, #request
  
    
      Instance Method Summary
      collapse
    
    
  
  
  
  
  
  
  
  
  
  
  #id, #initialize
  
    Instance Method Details
    
      
  
  
    #authenticate(username, password)  ⇒ Object 
  
  
  
  
    
      
24
25
26 
     | 
    
      # File 'lib/selenium/webdriver/bidi/network/intercepted_auth.rb', line 24
def authenticate(username, password)
  network.continue_with_auth(id, username, password)
end 
     | 
  
 
    
      
  
  
    #cancel  ⇒ Object 
  
  
  
  
    
      
32
33
34 
     | 
    
      # File 'lib/selenium/webdriver/bidi/network/intercepted_auth.rb', line 32
def cancel
  network.cancel_auth(id)
end 
     | 
  
 
    
      
  
  
    #skip  ⇒ Object 
  
  
  
  
    
      
28
29
30 
     | 
    
      # File 'lib/selenium/webdriver/bidi/network/intercepted_auth.rb', line 28
def skip
  network.continue_without_auth(id)
end 
     |