This helps a lot to produce nice logging:
```js
const { chromium, webkit } = require('playwright');
(async () => {
for (const browser of [chromium, webkit]) {
console.log(`Testing on ${browser.name()}`);
const browser = await browser.launch();
// ...
await browser.close();
}
})();
```
|
||
|---|---|---|
| .. | ||
| api.md | ||
| troubleshooting.md | ||
| web.md | ||