mirror of
https://github.com/browser-use/browser-use
synced 2026-05-06 17:52:15 +02:00
23 lines
550 B
Python
23 lines
550 B
Python
import argparse
|
|
import asyncio
|
|
|
|
from playwright.async_api import async_playwright
|
|
|
|
|
|
async def test_full_screen(start_fullscreen: bool, maximize: bool):
|
|
async with async_playwright() as p:
|
|
browser = await p.chromium.launch(
|
|
headless=False,
|
|
args=['--start-maximized'],
|
|
)
|
|
context = await browser.new_context(no_viewport=True, viewport=None)
|
|
page = await context.new_page()
|
|
await page.goto('https://google.com')
|
|
|
|
await asyncio.sleep(10)
|
|
await browser.close()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
asyncio.run(test_full_screen(False, False))
|