Skip to content

Commit

Permalink
fix: inherit browser-level proxy settings from incognito context
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmydief committed Feb 15, 2022
1 parent 94d2c89 commit 52f5956
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/Browser.ts
Expand Up @@ -319,7 +319,7 @@ export class Browser extends EventEmitter {
async createIncognitoBrowserContext(
options: BrowserContextOptions = {}
): Promise<BrowserContext> {
const { proxyServer = '', proxyBypassList = [] } = options;
const { proxyServer, proxyBypassList } = options;

const { browserContextId } = await this._connection.send(
'Target.createBrowserContext',
Expand Down

0 comments on commit 52f5956

Please sign in to comment.