57 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
-4
votes
0
answers
70
views
How to handle reCAPTCHA/hCaptcha challenges in Chrome automation for testing purposes? [duplicate]
I’m developing an automated testing framework that uses Selenium (including headless Chrome) to test web applications. During test runs, I frequently encounter CAPTCHA challenges — mainly reCAPTCHA v2 ...
-2
votes
1
answer
726
views
How to bypass hCaptcha when automating a website login using Selenium in Python?
I'm working on a Python Selenium automation to access the Brazilian website for MEI DAS payments so i can download them automatically. However, I encountered an issue where the website is protected by ...
1
vote
0
answers
90
views
Problem with log in on discord with captcha using selenium
I want to create a bot who log in discord.
The problem is that discord appear with a captcha.
I paid for 2captcha solution.
I solve the captcha but I don't know how to insert it because there are no ...
-2
votes
1
answer
529
views
Webscraping with python | How to pass a hCaptcha
I'm trying to automate a task that i enter in a public website, from the brazilian government, and collect some public data from some companies. But when i am entering with selenium in the website i ...
1
vote
1
answer
678
views
HCaptcha event functions not triggering in AstroJS
This is index.astro file:
---
import HCaptcha from "@hcaptcha/react-hcaptcha";
function handleVerificationSuccess(token, ekey) {
console.log("Token:", token);
console.log(&...
0
votes
1
answer
706
views
Astro is not rendering hCaptcha after hydrating the component
I'm having issues rendering hCaptcha on my Astro project. The Captcha field appears when refreshing the page for a split second and disappears.
index.astro
---
import Hcaptcha from "../components/...
2
votes
1
answer
970
views
Is there a way for Selenium to connect to an already open instance?
I need to access a browser that is already open. I'm using Python, but if you have another language, I welcome help! I'm trying to access a website and when I break its captcha even manually (the ...
2
votes
1
answer
879
views
How can I use an hCaptcha callback with Getform and Ajax form submission?
I'm using Getform https://getform.io/ for a Javascript contact form, along with hCaptcha hcaptcha.com. GetForm fully supports hCaptcha https://docs.getform.io/features/spam-filtering/hcaptcha/ . But ...
0
votes
1
answer
637
views
hCaptcha - How to stop page from refreshing on submit if captcha is not checked/validated
I have installed hCaptcha into my contact form and it works fine (email is sent only after captcha is checked/validated but how do I stop the page from refreshing on submit if captcha is not checked/...
0
votes
1
answer
353
views
Making POST request to put a token on discord server in nodejs
I have 2captcha and I can't use it because I don't know where to put the captcha token
I am trying to make a post request to the following endpoint:
https://discord.com/api/v9/invites/${link}\
But, i ...
0
votes
1
answer
726
views
hCaptcha with Nodejs and React not working (csp)
I have nodejs with helmet as backend and react with the "@hcaptcha/react-hcaptcha" library in the frontend
nodejs:
app.use(helmet());
app.use(helmet.contentSecurityPolicy({
directives: {
...
0
votes
2
answers
1k
views
Problem with Hcaptcha and iframe browser restriction
I'm working on a local javascript application that interact with a server in ajax and I want to securize my creation form with hcaptcha.
<script src='https://js.hcaptcha.com/1/api.js' async defer&...
1
vote
0
answers
617
views
How to bypass the hcaptcha in selenium python code for free?
I`m looking for free stable solution of bypassing captchas (hcaptcha specifically). I am aware of some 2captcha.com-like services and everything, but this does not satisfy me. I am thinking about some ...
1
vote
0
answers
16
views
selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element Even tho its there [duplicate]
I've been trying to access this element I have tried XPATH, CSSSELECTOR and none worked. I'm trying to acces sitekey= and pass it into a variable.
I'm expecting the function to return the sitekey to a ...
0
votes
1
answer
931
views
H Captcha on a web page without submit button or callback
I use Python and the selenium libary. My problem is that on the internet page top.gg when you vote there is a H captcha that opens automaitically. The problem is I can't find a callback function. I ...