mirror of
https://github.com/browser-use/browser-use
synced 2026-05-06 17:52:15 +02:00
42 lines
1.1 KiB
Python
42 lines
1.1 KiB
Python
"""
|
|
Simple try of the agent.
|
|
|
|
@dev You need to add OPENAI_API_KEY to your environment variables.
|
|
"""
|
|
|
|
import os
|
|
import sys
|
|
|
|
from browser_use.browser.browser import Browser, BrowserConfig
|
|
from browser_use.browser.context import BrowserContext, BrowserContextConfig
|
|
|
|
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, AgentHistoryList, Controller
|
|
|
|
llm = ChatOpenAI(model='gpt-4o')
|
|
# browser = Browser(config=BrowserConfig(headless=False))
|
|
|
|
agent = Agent(
|
|
task=(
|
|
'go to https://codepen.io/geheimschriftstift/pen/mPLvQz and first get all options for the dropdown and then select the 5th option'
|
|
),
|
|
llm=llm,
|
|
browser_context=BrowserContext(
|
|
browser=Browser(config=BrowserConfig(headless=False, disable_security=True)),
|
|
),
|
|
)
|
|
|
|
|
|
async def test_dropdown():
|
|
history: AgentHistoryList = await agent.run(20)
|
|
# await controller.browser.close(force=True)
|
|
|
|
result = history.final_result()
|
|
assert result is not None
|
|
assert 'Duck' in result
|
|
# await browser.close()
|