playwright/tests/stress
Pavel Feldman 53bf1995db
chore: do not leak internal page handles after closing page (#24169)
Partial fix for https://github.com/microsoft/playwright/issues/6319

After this fix, the following scenario won't leak and the context state
(cookies, storage, etc) can be reused by the new page sessions:

```js
  for (let i = 0; i < 1000; ++i) {
    const page = await context.newPage();
    await page.goto('...');
    await page.close('...');
  }
```
2023-07-12 14:51:13 -07:00
..
browsers.spec.ts test(stress): add stress tests (#14240) 2022-05-18 09:50:58 -07:00
contexts.spec.ts chore: ease the stress tests (#14260) 2022-05-18 12:01:18 -07:00
heap.spec.ts chore: do not leak internal page handles after closing page (#24169) 2023-07-12 14:51:13 -07:00
playwright.config.ts test: fix stress test bots (#20138) 2023-01-17 19:23:13 +01:00