-
Notifications
You must be signed in to change notification settings - Fork 51
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
Examples to work with #1
Comments
This is just an example in node.js using this repo with a headless browser: const piece = await this.page.$('your_piece_selector');
const box = await piece.boundingBox();
await page.mouse.move(box.x + box.width / 2, box.y + box.height / 2);
await page.mouse.down();
await page.waitFor(2000); // You need to wait at least 2 seconds to bypass antibot.
await .page.mouse.move(
box.x + Number(geetest_slice_captcha_solver_solution.toString()) + 32, // 32 for the rest piece pixels.!
box.y,
{
steps: 10 // For some human sliding simulation
}
); // move to coordinates
await page.mouse.up(); In python, you can use pyppeteer for this simulation. |
Thank you for the answer, but I am don't have such skill yet, I am starting with Kantu to do browser automation and was thinking about try to use this captcha solver but I think I got it wrong and I can't do it directly there right only with headless browser ? |
No, you can use this repo any application supports python execution. |
Kantu is just an addon for Chrome/Firefox based on Selenium IDE I have no skill to code so will be difficult to use this now, but thanks |
Hello @gigatoride . I am very interesting in your code and I would appreciate a lot if you can share how did you get geetest_slice_captcha_solver_solution from this repo? |
Can you plz give me a code how did you get geetest_slice_captcha_solver_solution from this repo? On your Nodejs application. |
@danielsgit you can use this python file and import it in your Node.js project with any node package. |
Hello, any example to work with a browser in real production ?
thanks
The text was updated successfully, but these errors were encountered: