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(chromium): roll chromium to r624492 #3909

Merged
merged 1 commit into from Feb 5, 2019

Conversation

JoelEinbinder
Copy link
Collaborator

The previous Chromium revision broke a bunch of big sites with TLS errors.
Fixes #3893
Might be related to #3880

@aslushnikov aslushnikov merged commit 6e1f7dc into puppeteer:master Feb 5, 2019
@vsemozhetbyt
Copy link
Contributor

Thank you.

@UAhmadSoft
Copy link

I am still getting errors on https sites, this is my code :

(async () => {
  const puppeteer = require('puppeteer');
  //  const url = 'http://cheapinsurancebyzip.info/lead/form-jid-203221202947.php';  **// working**
   const url = 'https://cheapinsurancebyzip.info/lead/form-jid-203221202947.php';    **// not working**

  const browser = await puppeteer.launch({
    executablePath: 'chrome-win/chrome.exe',
    args: [
      '--proxy-server=http://geo.iproyal.com:12344',
    ],
  });

 
  const page = await browser.newPage();
  await page.authenticate({
    username: 'myusername',
    password: 'mypass',
  });

  await page.goto(url);
  // browser.close();
})();

Versions
"puppeteer": "^19.7.2",
"puppeteer-core": "^19.7.2",

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants