Skip to content

Commit

Permalink
Speed up slow mo from experience
Browse files Browse the repository at this point in the history
  • Loading branch information
jperl committed Mar 9, 2020
1 parent 9a5dbe2 commit 952a78c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/docs/api/qawolf/launch.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ const qawolf = require('qawolf');
const firefoxBrowser = await qawolf.launch({ browserName: 'firefox' });
```

Launch a [Firefox](https://www.mozilla.org/en-US/firefox/new) browser, setting the [`slowMo` option](https://github.com/microsoft/playwright/blob/master/docs/api.md#browsertypelaunchoptions) to 500 milliseconds:
Launch a [Firefox](https://www.mozilla.org/en-US/firefox/new) browser, setting the [`slowMo` option](https://github.com/microsoft/playwright/blob/master/docs/api.md#browsertypelaunchoptions) to 50 milliseconds:

```js
const qawolf = require('qawolf');
// ...
const firefoxBrowser = await qawolf.launch({
browserName: 'firefox',
slowMo: 500,
slowMo: 50,
});
```

0 comments on commit 952a78c

Please sign in to comment.