playwright/docs
Andrey Lushnikov 8d54b4ccf4 feat: introduce BrowserType.webEngine()
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.webEngine()}`);
    const browser = await browser.launch();
    // ...
    await browser.close();
  }
})();
```

NOTE: the `webEngine()` is picked over `browserName()` so that other
chromium-based browsers, like Edgium, will correctly report
their rendering engine.
2020-01-28 16:43:40 -08:00
..
api.md feat: introduce BrowserType.webEngine() 2020-01-28 16:43:40 -08:00
troubleshooting.md chore: replace pptr with pw (#643) 2020-01-24 16:15:41 -08:00
web.md api: introduce BrowserType with a single interface, update top-level api (#636) 2020-01-24 14:49:47 -08:00