You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test('2 tabs',async({ context, page })=>{awaittest.step('first tab',async()=>{// <-- Test has no assertions (false warning)constframe=getFrame(page);awaitexpect(frame.getByText('Hello')).toBeVisible();});awaittest.step('second tab',async()=>{constframe2=awaitopenNewTabAndGetFrame(context);awaitexpect(frame2.getByText('Hello')).toBeVisible();});});
The text was updated successfully, but these errors were encountered:
This gives false
expect-expect
warningThe text was updated successfully, but these errors were encountered: