We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48b4882 commit 88defbdCopy full SHA for 88defbd
docs/src/network.md
@@ -77,7 +77,7 @@ Here is an example of a global proxy:
77
const browser = await chromium.launch({
78
proxy: {
79
server: 'http://myproxy.com:3128',
80
- user: 'usr',
+ username: 'usr',
81
password: 'pwd'
82
}
83
});
@@ -93,15 +93,15 @@ Browser browser = chromium.launch(new BrowserType.LaunchOptions()
93
```python async
94
browser = await chromium.launch(proxy={
95
"server": "http://myproxy.com:3128",
96
- "user": "usr",
+ "username": "usr",
97
"password": "pwd"
98
})
99
```
100
101
```python sync
102
browser = chromium.launch(proxy={
103
104
105
106
107
0 commit comments