Skip to content
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

I had tried to run Captcha.py but not working as expected #923

Open
avejmaniyar124 opened this issue Mar 3, 2025 · 4 comments
Open

I had tried to run Captcha.py but not working as expected #923

avejmaniyar124 opened this issue Mar 3, 2025 · 4 comments
Labels
bug Something isn't working

Comments

@avejmaniyar124
Copy link

Bug Description

I had run captcha.py and other scripts as well but giving error as "LangChainBetaWarning: The function load is in beta. It is actively being worked on, so the API may change.value['message'] = load(value['message'])", Could you please check and help me to resolve this.

Image

Reproduction Steps

  1. Go to use-cases directory
  2. Run Captcha.py
  3. Script will run initially
  4. but ended up giving message on terminal as "LangChainBetaWarning: The function load is in beta. It is actively being worked on, so the API may change.
    value['message'] = load(value['message'])"

Code Sample

"""
Goal: Automates CAPTCHA solving on a demo website.


Simple try of the agent.
@dev You need to add OPENAI_API_KEY to your environment variables.
NOTE: captchas are hard. For this example it works. But e.g. for iframes it does not.
for this example it helps to zoom in.
"""

import os
import sys

sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))

import asyncio
from langchain_openai import ChatOpenAI
from browser_use import Agent
from dotenv import load_dotenv

# Load environment variables
load_dotenv()
if not os.getenv('OPENAI_API_KEY'):
    raise ValueError('OPENAI_API_KEY is not set. Please add it to your environment variables.')

async def main():
    llm = ChatOpenAI(model='gpt-4o')
    agent = Agent(
	    task='go to https://captcha.com/demos/features/captcha-demo.aspx and solve the captcha',
		llm=llm,
	)
    await agent.run()
    input('Press Enter to exit')

if __name__ == "__main__":
    asyncio.run(main())

Version

0.1.40

LLM Model

GPT-4o

Operating System

Windows 10

Relevant Log Output

"C:\Program Files\Python312\python.exe" C:\Automation\browser-use-main\browser-use-main\examples\use-cases\captcha.py 
INFO     [browser_use] BrowserUse logging setup complete with level info
INFO     [root] Anonymized telemetry enabled. See https://docs.browser-use.com/development/telemetry for more information.
C:\Users\maniyar\AppData\Roaming\Python\Python312\site-packages\browser_use\agent\message_manager\views.py:59: LangChainBetaWarning: The function `load` is in beta. It is actively being worked on, so the API may change.
  value['message'] = load(value['message'])
INFO     [agent] 🚀 Starting task: go to https://captcha.com/demos/features/captcha-demo.aspx and solve the captcha
INFO     [agent] 📍 Step 1
INFO     [agent] 📍 Step 1
INFO     [agent] 📍 Step 1
INFO     [agent] 📍 Step 1

Process finished with exit code -1
@avejmaniyar124 avejmaniyar124 added the bug Something isn't working label Mar 3, 2025
@atemerev
Copy link

Is there anything about it? I am getting the same behavior (opens empty browser window, loops through "INFO [agent] 📍 Step 1") for any code I am trying to run.

@luminfeiS
Copy link

i have the same question, how could i solve this problem?

@zhong-denny
Copy link

i have the same question. with blank browser windows, loops with Step 1, but browser did not show any content and url.

@pirate
Copy link
Member

pirate commented Mar 23, 2025

LangChainBetaWarning: The function load is in beta is a red herring, unrelated to the issue of seeing Step 1 over and over again.

One common cause of it getting stuck on startup is that playwright's await page.title() can hang indefinitely if for some reason that page's CDP channel is crashed. I fixed that particular bug in a commit here (as part of a bigger unrelated PR). Subscribe over there to be notified when it merges.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

5 participants