Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add proxy and bypass list parameters to createIncognitoBrowserContext #7516

Merged
merged 5 commits into from
Sep 18, 2021

Commits on Sep 17, 2021

  1. feat: add proxy and bypass list parameters to createIncognitoBrowserC…

    …ontext
    
    Issue: puppeteer#678
    
    Example:
    
    (async () => {
      const browser = await puppeteer.launch();
      const context = await browser.createIncognitoBrowserContext('myproxy.com:3128');
      const page = await context.newPage()
      await page.authenticate({username: 'foo', password: 'bar' });
      await page.goto('https://google.com');
      await browser.close();
    })();
    Joone Hur authored and joone committed Sep 17, 2021
    Configuration menu
    Copy the full SHA
    ba5bc27 View commit details
    Browse the repository at this point in the history
  2. chore: update documentation

    jschfflr authored and joone committed Sep 17, 2021
    Configuration menu
    Copy the full SHA
    e0fe272 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    00f9bbb View commit details
    Browse the repository at this point in the history
  4. feat: replace normal arguments with an object in createIncognitoBrows…

    …erContext
    
    Issue: puppeteer#678
    Joone Hur authored and joone committed Sep 17, 2021
    Configuration menu
    Copy the full SHA
    99de59e View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    cf26e45 View commit details
    Browse the repository at this point in the history