Skip to content

Commit

Permalink
Add sample for proxy usage
Browse files Browse the repository at this point in the history
  • Loading branch information
petehouston committed Dec 1, 2015
1 parent f228087 commit 051f4f5
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,24 @@ need to update the `helpers.WebDriverIO.proxy` key.
}
```
For example,
```js
{
"helpers": {
"WebDriverIO": {
"proxy": {
"proxyType": "manual",
"httpProxy": "http://corporate.proxy:8080",
"socksUsername": "codeceptjs",
"socksPassword": "secret",
"noProxy": "127.0.0.1,localhost"
}
}
}
}
```
Please refer to [Selenium - Proxy Object](https://code.google.com/p/selenium/wiki/DesiredCapabilities#Proxy_JSON_Object) for more information.
## Current State
Expand Down

0 comments on commit 051f4f5

Please sign in to comment.