Build latest book artifacts / build (push) Canceled after 0s
dependency resolution / resolve (3.11) (push) Canceled after 0s
dependency resolution / resolve (3.13) (push) Canceled after 0s
deploy-pages / build (push) Canceled after 0s
deploy-pages / deploy (push) Canceled after 0s
i18n consistency check / check (push) Canceled after 0s
provider adoption tests / test (chapter2/context-compression) (push) Canceled after 0s
provider adoption tests / test (chapter2/prompt-injection) (push) Canceled after 0s
provider adoption tests / test (chapter2/system-hint) (push) Canceled after 0s
provider adoption tests / test (chapter3/log-sanitization) (push) Canceled after 0s
web-search-agent tests / test (push) Canceled after 0s
web-search-agent tests / agentbook (push) Canceled after 0s
33 lines
732 B
Python
33 lines
732 B
Python
from browser_use import Agent
|
|
from browser_use.browser import BrowserProfile, BrowserSession
|
|
from browser_use.browser.types import ViewportSize
|
|
from browser_use.llm import ChatAzureOpenAI
|
|
|
|
# Initialize the Azure OpenAI client
|
|
llm = ChatAzureOpenAI(
|
|
model='gpt-4.1-mini',
|
|
)
|
|
|
|
|
|
TASK = """
|
|
Go to https://browser-use.github.io/stress-tests/challenges/react-native-web-form.html and complete the React Native Web form by filling in all required fields and submitting.
|
|
"""
|
|
|
|
|
|
async def main():
|
|
browser = BrowserSession(
|
|
browser_profile=BrowserProfile(
|
|
window_size=ViewportSize(width=1100, height=1000),
|
|
)
|
|
)
|
|
|
|
agent = Agent(task=TASK, llm=llm)
|
|
|
|
await agent.run()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
import asyncio
|
|
|
|
asyncio.run(main())
|