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