hcaptcha-challenger icon indicating copy to clipboard operation
hcaptcha-challenger copied to clipboard

fix: Drag each segment to its position on the line

Open curionox opened this issue 7 months ago • 2 comments

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?

Image

Image

curionox avatar May 07 '25 06:05 curionox

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.

QIN2DIM avatar May 07 '25 07:05 QIN2DIM

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)

QIN2DIM avatar May 07 '25 07:05 QIN2DIM