Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Commit

Permalink
docs(browser-support): Fixed incorrect example
Browse files Browse the repository at this point in the history
Fixed incorrect example of setting window size with headless Chrome. When `800x600` is used it is ignored. The correct syntax is `800,600`.
  • Loading branch information
marklagendijk authored and heathkit committed Jul 15, 2017
1 parent e5a5d59 commit 299fc8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/browser-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ capabilities: {
browserName: 'chrome',

chromeOptions: {
args: [ "--headless", "--disable-gpu", "--window-size=800x600" ]
args: [ "--headless", "--disable-gpu", "--window-size=800,600" ]
}
}
```

0 comments on commit 299fc8d

Please sign in to comment.