Daniel Imms
|
8a7728da3d
|
docs: document LaunchOptions.dumpio (#1051)
|
2020-02-18 08:56:20 -08:00 |
|
Andrey Lushnikov
|
ad9d6cc31f
|
feat: introduce browserType.downloadBrowserIfNeeded() (#834)
Fixes #823
|
2020-02-11 11:33:48 -08:00 |
|
Pavel Feldman
|
55b6fe241e
|
feat(launch): introduce client, server & persistent launch modes (3) (#854)
|
2020-02-05 16:36:36 -08:00 |
|
Pavel Feldman
|
a2ab645e63
|
feat(launch): introduce client, server & persistent launch modes (2) (#840)
|
2020-02-05 12:41:55 -08:00 |
|
Pavel Feldman
|
0518625dcc
|
feat(launch): introduce client, server & persistent launch modes (1) (#838)
|
2020-02-04 19:41:38 -08:00 |
|
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 |
|
Dmitry Gozman
|
c453851217
|
api: introduce BrowserType with a single interface, update top-level api (#636)
|
2020-01-24 14:49:47 -08:00 |
|