hcaptcha-challenger
hcaptcha-challenger copied to clipboard
fix: Drag each segment to its position on the line
Brief description
This document describes an automation approach for handling hCaptcha challenges, illustrating how to effectively interact with hCaptcha elements via the agent's robotic arm interface.
I ran the demo code, but the verification has not passed. Is there any other configuration required?
This is a known problem and I am exploring some elegant ways to make the model better for this type of challenge (pipeline segment) where the model does not seem to understand the challenge prompt.
For other types of challenges, the model performs well.
You can refer to this demo to skip this particular challenge type by configuring ignore_request_questions.
- https://github.com/QIN2DIM/hcaptcha-challenger/blob/main/examples/demo_custom_agent_config.py
agent_config = AgentConfig(
ignore_request_questions=["Drag each segment to its position on the line"],
)
agent = AgentV(page=page, agent_config=agent_config)