Skip to content

Commit

Permalink
disable some e2e tests for headless
Browse files Browse the repository at this point in the history
  • Loading branch information
sadym-chromium committed Nov 18, 2024
1 parent 6193900 commit 13e1688
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/browser/test_get_client_windows.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,11 @@ async def test_browser_get_client_windows_two_tabs(websocket, context_id,

@pytest.mark.asyncio
async def test_browser_get_client_windows_two_windows(websocket, context_id,
create_context):
create_context,
test_headless_mode):
if test_headless_mode != "false":
pytest.xfail("Multiple windows are only supported in headful mode")

await create_context(context_type='window')

resp = await execute_command(websocket, {
Expand Down

0 comments on commit 13e1688

Please sign in to comment.