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

expect the CustomBrowserContext provide new_page() method #722

Closed
bolt163 opened this issue Feb 14, 2025 · 2 comments
Closed

expect the CustomBrowserContext provide new_page() method #722

bolt163 opened this issue Feb 14, 2025 · 2 comments
Labels
bug Something isn't working

Comments

@bolt163
Copy link

bolt163 commented Feb 14, 2025

Bug Description

page = await browser_context.new_page()
^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'CustomBrowserContext' object has no attribute 'new_page'

Reproduction Steps

browser_context = await browser.new_context(
config=BrowserContextConfig(
trace_path="./tmp/traces",
save_recording_path="./tmp/record_videos",
no_viewport=False,
browser_window_size=BrowserContextWindowSize(
width=window_w, height=window_h
),
)
)

    page = await browser_context.new_page()

Code Sample

browser_context = await browser.new_context(
            config=BrowserContextConfig(
                trace_path="./tmp/traces",
                save_recording_path="./tmp/record_videos",
                no_viewport=False,
                browser_window_size=BrowserContextWindowSize(
                    width=window_w, height=window_h
                ),
            )
        )

        page = await browser_context.new_page()

Version

latest version

LLM Model

DeepSeek Coder

Operating System

macos

Relevant Log Output

@bolt163 bolt163 added the bug Something isn't working label Feb 14, 2025
@pppp606
Copy link
Contributor

pppp606 commented Feb 16, 2025

@bolt163
Please note that the Browser class in browser-use is completely different from Playwright’s Browser; they are entirely separate in design and functionality. Likewise, the context used in browser-use is not the same as Playwright’s context, and therefore, the new_page() method does not exist in browser-use. Instead, you might consider using the create_new_tab() method to open a new tab.

async def create_new_tab(self, url: str | None = None) -> None:
"""Create a new tab and optionally navigate to a URL"""
if url and not self._is_url_allowed(url):
raise BrowserError(f'Cannot create new tab with non-allowed URL: {url}')
session = await self.get_session()
new_page = await session.context.new_page()
session.current_page = new_page
await new_page.wait_for_load_state()
page = await self.get_current_page()
if url:
await page.goto(url)
await self._wait_for_page_and_frames_load(timeout_overwrite=1)

create_new_tab() internally calls new_page()

@bolt163
Copy link
Author

bolt163 commented Feb 17, 2025 via email

@bolt163 bolt163 closed this as completed Feb 19, 2025
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

No branches or pull requests

2 participants