diff --git a/tests/e2e/test_mobile_authored_pull_queue_release.py b/tests/e2e/test_mobile_authored_pull_queue_release.py index 1c402f0..d2d45cc 100644 --- a/tests/e2e/test_mobile_authored_pull_queue_release.py +++ b/tests/e2e/test_mobile_authored_pull_queue_release.py @@ -28,6 +28,7 @@ def test_authored_pull_queue_is_phone_usable_and_opens_the_existing_pull_route(v page.add_script_tag(path=FRONTEND / "mobile-queue-launcher.js") page.add_script_tag(path=FRONTEND / "pull-sheet.js") page.evaluate("document.querySelector('#mobile-queue-sheet').showModal()") + page.locator(".mobile-queue-all summary").click() row = page.locator('[data-mobile-queue="authored"]') expect(row).to_have_count(1) diff --git a/tests/e2e/test_mobile_home_bootstrap_release.py b/tests/e2e/test_mobile_home_bootstrap_release.py index c2f7f76..96d462c 100644 --- a/tests/e2e/test_mobile_home_bootstrap_release.py +++ b/tests/e2e/test_mobile_home_bootstrap_release.py @@ -239,6 +239,7 @@ def test_release_artifact_bootstraps_mobile_home_and_returns_from_insights( page.locator("#cancel-plan-today").click() page.locator('[data-mobile-task="queues"]').click() + page.locator(".mobile-queue-all summary").click() delivery_queue = page.locator('[data-mobile-queue="delivery"]') expect(delivery_queue).to_be_visible() expect(delivery_queue).to_contain_text("Delivery") diff --git a/tests/e2e/test_mobile_today_handoff_release.py b/tests/e2e/test_mobile_today_handoff_release.py index 4f9f662..c68040c 100644 --- a/tests/e2e/test_mobile_today_handoff_release.py +++ b/tests/e2e/test_mobile_today_handoff_release.py @@ -416,6 +416,7 @@ def test_release_artifact_pauses_today_across_mobile_work_and_insights_detours(t queue_pause = page.locator("#mobile-queue-sheet [data-today-detour]") expect(queue_pause).to_be_visible() expect(queue_pause).to_contain_text("Today paused ยท Ship mobile capture") + page.locator(".mobile-queue-all summary").click() page.locator('[data-mobile-queue="later"]').click() persistent_pause = page.locator("#my-work > [data-today-detour]") expect(persistent_pause).to_be_visible()