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
42 lines
1019 B
Python
42 lines
1019 B
Python
import asyncio
|
|
|
|
from browser_use import Agent, Browser, ChatOpenAI
|
|
|
|
llm = ChatOpenAI('gpt-4.1-mini')
|
|
|
|
|
|
async def main():
|
|
"""
|
|
Main function demonstrating mixed automation with Browser-Use and Playwright.
|
|
"""
|
|
print('🚀 Mixed Automation with Browser-Use and Actor API')
|
|
|
|
browser = Browser(keep_alive=True)
|
|
await browser.start()
|
|
|
|
page = await browser.get_current_page() or await browser.new_page()
|
|
|
|
# Go to apple wikipedia page
|
|
await page.goto('https://www.google.com/travel/flights')
|
|
|
|
await asyncio.sleep(1)
|
|
|
|
round_trip_button = await page.must_get_element_by_prompt('round trip button', llm)
|
|
await round_trip_button.click()
|
|
|
|
one_way_button = await page.must_get_element_by_prompt('one way button', llm)
|
|
await one_way_button.click()
|
|
|
|
await asyncio.sleep(1)
|
|
|
|
agent = Agent(task='Find the cheapest flight from London to Paris on 2025-10-15', llm=llm, browser_session=browser)
|
|
await agent.run()
|
|
|
|
input('Press Enter to continue...')
|
|
|
|
await browser.stop()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
asyncio.run(main())
|