File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed 
py/test/selenium/webdriver/common Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -68,8 +68,6 @@ def callback(request: Request):
6868    assert  driver .find_element (By .NAME , "login" ).is_displayed (), "Request not continued" 
6969
7070
71- @pytest .mark .xfail_chrome  
72- @pytest .mark .xfail_edge  
7371def  test_continue_request (driver , pages ):
7472    def  callback (request : Request ):
7573        request .continue_request ()
@@ -80,17 +78,13 @@ def callback(request: Request):
8078    assert  driver .find_element (By .NAME , "login" ).is_displayed (), "Request not continued" 
8179
8280
83- @pytest .mark .xfail_chrome  
84- @pytest .mark .xfail_edge  
8581def  test_continue_with_auth (driver ):
8682    callback_id  =  driver .network .add_auth_handler ("user" , "passwd" )
8783    assert  callback_id  is  not   None , "Request handler not added" 
8884    driver .get ("https://httpbin.org/basic-auth/user/passwd" )
8985    assert  "authenticated"  in  driver .page_source , "Authorization failed" 
9086
9187
92- @pytest .mark .xfail_chrome  
93- @pytest .mark .xfail_edge  
9488def  test_remove_auth_handler (driver ):
9589    callback_id  =  driver .network .add_auth_handler ("user" , "passwd" )
9690    assert  callback_id  is  not   None , "Request handler not added" 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments