mirror of
https://github.com/browser-use/browser-use
synced 2026-05-06 17:52:15 +02:00
48 lines
1.2 KiB
Python
48 lines
1.2 KiB
Python
# Goal: Automates posting on X (Twitter) using stored authentication cookies.
|
|
|
|
import asyncio
|
|
import os
|
|
import sys
|
|
|
|
sys.path.append(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))))
|
|
|
|
from dotenv import load_dotenv
|
|
|
|
load_dotenv()
|
|
|
|
from langchain_google_genai import ChatGoogleGenerativeAI
|
|
from pydantic import SecretStr
|
|
|
|
from browser_use import Agent
|
|
from browser_use.browser import BrowserProfile, BrowserSession
|
|
|
|
api_key = os.getenv('GOOGLE_API_KEY')
|
|
if not api_key:
|
|
raise ValueError('GOOGLE_API_KEY is not set')
|
|
|
|
llm = ChatGoogleGenerativeAI(model='gemini-2.0-flash-exp', api_key=SecretStr(api_key))
|
|
|
|
|
|
browser_session = BrowserSession(
|
|
browser_profile=BrowserProfile(
|
|
user_data_dir='~/.config/browseruse/profiles/default',
|
|
# headless=False, # Uncomment to see the browser
|
|
# executable_path='/Applications/Google Chrome.app/Contents/MacOS/Google Chrome',
|
|
)
|
|
)
|
|
|
|
|
|
async def main():
|
|
agent = Agent(
|
|
browser_session=browser_session,
|
|
task=('go to https://x.com. write a new post with the text "browser-use ftw", and submit it'),
|
|
llm=llm,
|
|
max_actions_per_step=4,
|
|
)
|
|
await agent.run(max_steps=25)
|
|
input('Press Enter to close the browser...')
|
|
|
|
|
|
if __name__ == '__main__':
|
|
asyncio.run(main())
|