mirror of
https://github.com/browser-use/browser-use
synced 2026-05-06 17:52:15 +02:00
80 lines
1.6 KiB
Python
80 lines
1.6 KiB
Python
import asyncio
|
|
import os
|
|
import sys
|
|
|
|
from langchain_openai import ChatOpenAI
|
|
|
|
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
from browser_use import Agent, Browser, BrowserConfig, BrowserContextConfig
|
|
|
|
llm = ChatOpenAI(model='gpt-4o')
|
|
browser = Browser(
|
|
config=BrowserConfig(
|
|
headless=False,
|
|
disable_security=False,
|
|
keep_alive=True,
|
|
new_context_config=BrowserContextConfig(
|
|
keep_alive=True,
|
|
disable_security=False,
|
|
),
|
|
)
|
|
)
|
|
|
|
|
|
async def main():
|
|
agent = Agent(
|
|
task="""
|
|
Go to https://bot-detector.rebrowser.net/ and verify that all the bot checks are passed.
|
|
""",
|
|
llm=llm,
|
|
browser=browser,
|
|
)
|
|
await agent.run()
|
|
input('Press Enter to continue to the next test...')
|
|
|
|
agent = Agent(
|
|
task="""
|
|
Go to https://www.webflow.com/ and verify that the page is not blocked by a bot check.
|
|
""",
|
|
llm=llm,
|
|
browser=browser,
|
|
)
|
|
await agent.run()
|
|
input('Press Enter to continue to the next test...')
|
|
|
|
agent = Agent(
|
|
task="""
|
|
Go to https://www.okta.com/ and verify that the page is not blocked by a bot check.
|
|
""",
|
|
llm=llm,
|
|
browser=browser,
|
|
)
|
|
await agent.run()
|
|
|
|
agent = Agent(
|
|
task="""
|
|
Go to https://abrahamjuliot.github.io/creepjs/ and verify that the detection score is >50%.
|
|
""",
|
|
llm=llm,
|
|
browser=browser,
|
|
)
|
|
await agent.run()
|
|
|
|
input('Press Enter to close the browser...')
|
|
|
|
agent = Agent(
|
|
task="""
|
|
Go to https://nowsecure.nl/ check the "I'm not a robot" checkbox.
|
|
""",
|
|
llm=llm,
|
|
browser=browser,
|
|
)
|
|
await agent.run()
|
|
|
|
input('Press Enter to close the browser...')
|
|
|
|
|
|
if __name__ == '__main__':
|
|
asyncio.run(main())
|