Andrey Lushnikov
ce7c8d74b5
feat: introduce BrowserType.name() (#732)
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();
}
})();
```
2020-01-28 18:09:07 -08:00
..
2020-01-13 17:36:46 -08:00
2020-01-28 18:04:51 -08:00
2020-01-03 11:15:43 -08:00
2020-01-28 13:07:53 -08:00
2020-01-10 22:34:17 -08:00
2020-01-23 15:44:31 -08:00
2020-01-10 22:34:17 -08:00
2020-01-24 11:12:57 -08:00
2020-01-14 16:54:50 -08:00
2020-01-13 16:29:08 -08:00
2020-01-28 13:26:26 -08:00
2020-01-15 17:53:03 -08:00
2019-12-19 16:47:35 -07:00
2020-01-13 10:13:28 -08:00
2019-11-19 10:58:15 -08:00
2020-01-27 11:43:43 -08:00
2020-01-15 17:53:03 -08:00
2020-01-23 14:58:30 -08:00
2020-01-28 13:07:53 -08:00
2020-01-13 10:13:28 -08:00
2020-01-13 15:39:13 -08:00
2019-12-10 13:28:50 -08:00
2020-01-13 10:13:28 -08:00
2020-01-13 10:13:28 -08:00
2020-01-28 14:29:46 -08:00
2020-01-16 15:24:37 -08:00
2020-01-13 10:13:28 -08:00
2020-01-28 18:09:07 -08:00
2020-01-22 17:34:34 -08:00
2020-01-24 11:12:57 -08:00
2020-01-28 13:05:38 -08:00
2020-01-23 15:32:56 -08:00
2020-01-28 17:25:07 -08:00
2020-01-28 11:20:34 -08:00
2020-01-28 11:20:34 -08:00
2019-11-19 10:58:15 -08:00
2020-01-24 15:56:41 -08:00
2020-01-24 16:15:41 -08:00
2020-01-17 17:14:39 -08:00
2020-01-16 12:57:28 -08:00
2020-01-23 17:45:31 -08:00
2020-01-23 17:52:06 -08:00