| 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: |
| try: |
| print('Attempting to connect to Chrome...') |
| |
| browser = await p.chromium.connect_over_cdp( |
| 'http://localhost:9222', |
| timeout=20000, |
| ) |
| print('Connected to Chrome successfully') |
|
|
| |
| if len(browser.contexts) == 0: |
| context = await browser.new_context(ignore_https_errors=True) |
| else: |
| context = browser.contexts[0] |
|
|
| if len(context.pages) == 0: |
| page = await context.new_page() |
| else: |
| page = context.pages[0] |
|
|
| print('Attempting to navigate to Gmail...') |
| try: |
| |
| await page.goto( |
| 'https://mail.google.com', |
| wait_until='load', |
| timeout=10000, |
| ) |
| except Exception as e: |
| print(f'First navigation attempt failed: {e}') |
| print('Trying again with different settings...') |
| |
| await page.goto( |
| 'https://mail.google.com', |
| wait_until='commit', |
| timeout=30000, |
| ) |
|
|
| |
| await asyncio.sleep(2) |
|
|
| print(f'Current page title: {await page.title()}') |
|
|
| |
| try: |
| await page.wait_for_selector('div[role="main"]', timeout=5000) |
| print('Gmail interface detected') |
| except Exception as e: |
| print(f'Note: Gmail interface not detected: {e}') |
|
|
| await asyncio.sleep(30) |
| except Exception as e: |
| print(f'An error occurred: {e}') |
| import traceback |
|
|
| traceback.print_exc() |
| finally: |
| await browser.close() |
|
|
|
|
| if __name__ == '__main__': |
| asyncio.run(test_full_screen(False, False)) |
|
|