Max Schmitt
Max Schmitt
https://github.com/microsoft/playwright-dotnet/issues/2565
- I didn't like `npx playwright uninstall` since then customers might think it removes whole Playwright and/or also the NPM/Nuget/Maven/PIP package. - So be more specify and call it e.g.:...
```ts import { firefox } from 'playwright'; (async () => { // Setup const browser = await firefox.launch(); const context = await browser.newContext(); const page = await context.newPage(); await page.goto('https://production.contosotraders.com/');...
ToT fails. 1.40 with 1944 is failing too.
**Note from maintainers:** You can already do each via running test in a loop: ```js for (const data of [1, 2,3, 4]) { test('testing ' + data, async ({ page...
Fixes https://github.com/microsoft/playwright/issues/5905