@@ -435,7 +435,7 @@ it('should return error with wrong credentials', async ({ context, server }) =>
435435 expect ( response2 . status ( ) ) . toBe ( 401 ) ;
436436} ) ;
437437
438- it ( 'should support HTTPCredentials.sendImmediately for newContext' , async ( { contextFactory, server } ) => {
438+ it ( 'should support HTTPCredentials.send for newContext' , async ( { contextFactory, server } ) => {
439439 it . info ( ) . annotations . push ( { type : 'issue' , description : 'https://github.com/microsoft/playwright/issues/30534' } ) ;
440440 const context = await contextFactory ( {
441441 httpCredentials : { username : 'user' , password : 'pass' , origin : server . PREFIX . toUpperCase ( ) , send : 'always' }
@@ -459,7 +459,7 @@ it('should support HTTPCredentials.sendImmediately for newContext', async ({ con
459459 }
460460} ) ;
461461
462- it ( 'should support HTTPCredentials.sendImmediately for browser.newPage' , async ( { contextFactory, server, browser } ) => {
462+ it ( 'should support HTTPCredentials.send for browser.newPage' , async ( { contextFactory, server, browser } ) => {
463463 it . info ( ) . annotations . push ( { type : 'issue' , description : 'https://github.com/microsoft/playwright/issues/30534' } ) ;
464464 const page = await browser . newPage ( {
465465 httpCredentials : { username : 'user' , password : 'pass' , origin : server . PREFIX . toUpperCase ( ) , send : 'always' }
0 commit comments