BUG- Not working with node 10.x
See original GitHub issueawait Promise.all([
page.waitForNavigation({
timeout: 15000
}),
(js.content = '$("input[value*=Login]").click();'),
await page.addScriptTag(js),
console.log("Clicking Login btn")
]);
console.log(await page.url());
Environment
chrome-aws-lambda
Version: 2.0.1puppeteer-core
Version: 2.0.*- Lambda Runtime: node 10.x
Expected Behavior
Should click the button and go to the corresponding url
Current Behavior
After Clicking on the button it redirects to “chrome-error://chromewebdata/”
Possible Solution
Works fine with node 8.10 on lambda
Issue Analytics
- State:
- Created 4 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Announcing the end of support for Node.js 10.x in the AWS ...
Starting January 1, 2022, AWS SDK For JavaScript (v3) will no longer support Node.js 10.x which was EOL on April 30, 2021.
Read more >How to Easily Update Node.js to the Latest Version
There are several easy & quick ways of upgrading Node.js. Learn how to update Node.js on different OS and improve your development ...
Read more >Error npm is known not to run on Node.js v10.24.1 and how to ...
Open you terminal and verify you have the latest version using node -v . Verify your npm version too using npm -v ....
Read more >Common errors | npm Docs
Some strange issues can be resolved by simply running npm cache clean and trying again. If you are having trouble with npm install...
Read more >Top 10 Most Common Node.js Developer Mistakes - Toptal
What we often overlook in these debates is that every programming language and platform is criticized based on certain issues, which are created...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@sdk0794 By passing
dumpio: true
tolaunch()
you to get a lot more debug information.Hey, Thanks a lot. Its working now. How did you debug the SSL error ?