Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
puppeteer-extra-plugin-capsolver
Advanced tools
Manage to solve captcha challenges with AI in a puppeteer-extra app (captcha service based).
npm i puppeteer puppeteer-extra puppeteer-extra-plugin-capsolver
❗ This plugin only helps retrieving solving tasks from api.capsolver.com based on capsolver-npm
SolverPlugin
and use it within puppeteer-extra
.await page.solver()
to retrieve and use the solver at any moment.const puppeteer = require("puppeteer-extra");
const SolverPlugin = require("puppeteer-extra-plugin-capsolver")("CAP-XXXXXX ...");
puppeteer.use(SolverPlugin);
puppeteer.launch().then(async (browser) => {
try {
let page = await browser.newPage();
await page.goto("https://example.com/");
let solution = await page.solver().hcaptchaproxyless({
websiteURL: "https://example.com/",
websiteKey: "00000000-0000-0000-0000-000000000000"
});
// use your solution (solution.gRecaptchaResponse in this case)
// ...
} catch (e) {
console.log(e);
} finally {
await browser.close();
}
});
api.capsolver.com
supported task.Figure out here.
FAQs
Manage to solve captcha challenges with AI in a puppeteer-extra app (captcha service based).
We found that puppeteer-extra-plugin-capsolver demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.