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 22, 2022
1 parent 731463a commit c60315d
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 c60315d

Please sign in to comment.