Evan Payne
Evan Payne
I did it this way: ``` const context = await browser.newContext({ storageState: { cookies: [], origins: [] } }); const page = await context.newPage(); await page.goto('/'); // auth context removed...
Found an even easier way, just drop this into your describe block or above your tests: ```test.use({ storageState: { cookies: [], origins: [] } });```
> But this will still run the globalSetup once before your tests, no? Just that it won't use what's inside `storageState.json` file anymore. Yes, exactly. The idea is that you...
Hey @stefanovualto, I haven't returned to this, no. If I do get a chance to (maybe a few months from now), I will update this here. Of course, others are...
Hi, any reason why this hasn't been merged? I was wondering why some keys on my project weren't being extracted. Turns out, a lot weren't because of this. Applied it...