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

Feat: enable multi-browser support #718

Closed
wants to merge 4 commits into from

Conversation

alimasri
Copy link

@alimasri alimasri commented Feb 14, 2025

  • Enable multi-browser support

resolves #171

@CLAassistant
Copy link

CLAassistant commented Feb 14, 2025

CLA assistant check
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
You have signed the CLA already but the status is still pending? Let us recheck it.

@alimasri alimasri force-pushed the multi-browser-support branch from 4d0805e to 8693853 Compare February 14, 2025 01:04
Copy link
Contributor

codebeaver-ai bot commented Feb 14, 2025

I tried to generate new tests but there might be some issues in your codebase that I couldn't fix.

🔄 Could not generate any new tests.
🐛 Found 1 bug
🛠️ 0/0 tests passed

🐛 Bug Detection

Potential issues found in the following files:

  • browser_use/dom/history_tree_processor/view.py

None.

🛠️ Test Results

All 0 tests passed.


Settings | Logs | CodeBeaver

@alimasri alimasri changed the title enable multi-browser support Feat: enable multi-browser support Feb 14, 2025
@PaperBoardOfficial
Copy link
Contributor

Hey! Thanks for your effort, but could you revert the formatting changes, it makes it hard to review. You can raise a different PR for format/refactoring changes.

@alimasri alimasri force-pushed the multi-browser-support branch from 9acc108 to 5194494 Compare February 15, 2025 01:23
@@ -179,7 +185,8 @@ async def _setup_browser_with_instance(self, playwright: Playwright) -> Playwrig

async def _setup_standard_browser(self, playwright: Playwright) -> PlaywrightBrowser:
"""Sets up and returns a Playwright Browser instance with anti-detection measures."""
browser = await playwright.chromium.launch(
browser_class = getattr(playwright, self.config.browser_class)
browser = await browser_class.launch(
headless=self.config.headless,
args=[
'--no-sandbox',
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure if the configuration here applies to all the browsers in the list, or if it's specific to Chromium.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You are right. Not all the configurations will apply to firefox and safari webkit. Some args are common but not all. You have to conditionally set the args.

Copy link
Author

@alimasri alimasri Feb 15, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I made the changes but I couldn't find alternatives for all the Chromium features. I tested both Firefox and WebKit, and the current configuration is working fine.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@alimasri Could just check this image
For Firefox in Playwright, you should not pass args like you do for Chromium. Instead, use firefoxUserPrefs to configure browser behavior. if you check playwright.firefox.launch() there is an argument of firefoxUserPrefs.
reference: https://playwright.dev/docs/api/class-browsertype

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Passing args is working following https://wiki.mozilla.org/Firefox/CommandLineOptions. For a quick test try passing -migration to the firefox args.
I see that firefoxUserPrefs allows for other options, but what are the default ones that are necessary in here?

@alimasri alimasri force-pushed the multi-browser-support branch from 5194494 to 81f51a3 Compare February 15, 2025 01:34
@kabachuha
Copy link

Hi! I'm trying to execute the real browser example (with reasonable modifications) in Firefox:

import os
import sys
from pathlib import Path

from browser_use.agent.views import ActionResult

sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
import asyncio

from langchain_openai import ChatOpenAI

from browser_use import Agent, Controller
from browser_use.browser.browser import Browser, BrowserConfig
from browser_use.browser.context import BrowserContext
from dotenv import load_dotenv
from pydantic import SecretStr

# dotenv
load_dotenv()

api_key = os.getenv('DEEPSEEK_API_KEY', '')
if not api_key:
	raise ValueError('DEEPSEEK_API_KEY is not set')

browser = Browser(
	config=BrowserConfig(
	browser_class='firefox',
		browser_instance_path='C:\\Program Files\\Mozilla Firefox\\firefox.exe',
	)
)


async def main():
	agent = Agent(
		task='In docs.google.com write my Papa a quick letter',
        llm=ChatOpenAI(
			base_url='https://api.deepseek.com/v1',
			model='deepseek-chat',
			api_key=SecretStr(api_key),
		),
		use_vision=False,
		browser=browser,
	)

	await agent.run()
	await browser.close()

	input('Press Enter to close...')


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

However, it gives me the error

future: <Future finished exception=Error('CDP connections are only supported by Chromium')>
playwright._impl._errors.Error: CDP connections are only supported by Chromium

My Firefox version is 128.7.0esr. As far as I know, the CDP connections have been deprecated and turned off at the end of 2024 in Firefox and your code uses CDP connections. Do you have a workaround in mind?

@alimasri
Copy link
Author

My Firefox version is 128.7.0esr. As far as I know, the CDP connections have been deprecated and turned off at the end of 2024 in Firefox and your code uses CDP connections. Do you have a workaround in mind?

Thanks for the details. I'll test this and think of a solution.

@pirate
Copy link
Member

pirate commented Mar 23, 2025

playwright can use webdriver bidi to talk to newer firefox versions, but I'm not sure if the rest of the code fully supports firefox currently. There are a few direct CDP calls.

@pirate
Copy link
Member

pirate commented Mar 25, 2025

FYI @alimasri we have merged a different multi-browser-support PR #950

If there is anything you would like to add from this PR that you feel is missing, please rebase and open a new PR. Thank you for your patience and time working on this, we are getting a lot of overlapping PR submissions so we cant just merge them directly, but there are pieces of this PR that are useful and would be great as a new smaller PR.

@pirate pirate closed this Mar 25, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Choose different playwright broswer engine
5 participants