Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding save_downloads_path in BrowserContextConfig hides indexes/dropdowns #669

Closed
tomlavez opened this issue Feb 11, 2025 · 3 comments · Fixed by #690
Closed

Adding save_downloads_path in BrowserContextConfig hides indexes/dropdowns #669

tomlavez opened this issue Feb 11, 2025 · 3 comments · Fixed by #690
Labels
bug Something isn't working

Comments

@tomlavez
Copy link
Contributor

tomlavez commented Feb 11, 2025

Bug Description

When creating a BrowserContextConfig, if you add save_downloads_path it will reduces indexing capabilities and close dropdowns automatically, decreasing quality in tasks that needs dropdowns.

Reproduction Steps

  1. Install browser-use
  2. Create a simple Browser
  3. Add a BrowserContextConfig with save_downloads_path
  4. Run a task that needs dropdowns interaction

Code Sample

import asyncio
import os
from browser_use import Agent
from browser_use.browser.browser import Browser, BrowserConfig
from browser_use.browser.context import BrowserContextConfig
from langchain_openai import ChatOpenAI

async def main():
    config = BrowserConfig(
                    headless=False,
                    disable_security=True,
                    # Comment the next 3 lines to make it work
                    new_context_config=BrowserContextConfig(
                        save_downloads_path="/home/tom/git-reps/RPA/test_workflows/docs",
                    ),
                )

    browser = Browser(config=config)

    prompt = """
        1. Enter https://formstone.it/components/dropdown/demo/
        2. You will see some examples labels and dropdowns. Your job is to select the second option 'Two', in the 'Basic' dropdown.
        """

    llm = ChatOpenAI()

    agent = Agent(
                task=prompt,
                llm=llm,
                browser=browser,
            )

    result = await agent.run()

    return

if __name__ == "__main__":
    asyncio.run(main())

Version

0.1.36

LLM Model

Other (specify in description)

Operating System

Ubuntu 24.04 LTS

Relevant Log Output

@tomlavez tomlavez added the bug Something isn't working label Feb 11, 2025
@tomlavez
Copy link
Contributor Author

tomlavez commented Feb 11, 2025

After looking for a while i figure out that this bug is probably happening because playwright page.expect_download identifies some JS events as downloads.

@ddam-enkhamgalan
Copy link

ddam-enkhamgalan commented Feb 12, 2025

This caused by some faulty exception on this line.

Logic is kinda odd, if no download triggers within 5 seconds it goes down to exception, but that exception doesn't expecting TimeoutError.
Remove TimeoutError and try. If possible make some PR.

@tomlavez
Copy link
Contributor Author

tomlavez commented Feb 12, 2025

Just changing from TimeoutError to a generic Exception does actually fix it.

Edit: just find out we are missing one import from playwright._impl._errors import TimeoutError

MagMueller added a commit that referenced this issue Feb 12, 2025
Fixed #669 - Missing playwright exception import
AryamanParida pushed a commit to AryamanParida/browser-use that referenced this issue Mar 7, 2025
Fixed browser-use#669 - Missing playwright exception import
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants