chromium/third_party/blink/web_tests/external/wpt/webdriver/tests/bidi/browsing_context/create/background.py

import pytest

pytestmark = pytest.mark.asyncio

from .. import get_document_focus, get_visibility_state


@pytest.mark.parametrize("type_hint", ["tab", "window"])
async def test_background_default_false(bidi_session, type_hint):
    new_context = await bidi_session.browsing_context.create(type_hint=type_hint)

    try:
        assert await get_visibility_state(bidi_session, new_context) == "visible"
        assert await get_document_focus(bidi_session, new_context) is True
    finally:
        await bidi_session.browsing_context.close(context=new_context["context"])


@pytest.mark.parametrize("type_hint", ["tab", "window"])
@pytest.mark.parametrize("background", [True, False])
async def test_background(bidi_session, top_context, type_hint, background):
    new_context = await bidi_session.browsing_context.create(type_hint=type_hint, background=background)

    try:
        if background:
            assert await get_visibility_state(bidi_session, top_context) == "visible"
        else:
            assert await get_visibility_state(bidi_session, new_context) == "visible"

        assert await get_document_focus(bidi_session, new_context) != background
    finally:
        await bidi_session.browsing_context.close(context=new_context["context"])