From aa5cc99adad87d7f0fc3c6bb26521654430bd28e Mon Sep 17 00:00:00 2001 From: Tommy Keswick Date: Thu, 3 Oct 2024 13:28:38 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20wait=20for=20libapps=20menu?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/deploy.py b/.github/workflows/deploy.py index 1639699..f75f8bf 100644 --- a/.github/workflows/deploy.py +++ b/.github/workflows/deploy.py @@ -10,6 +10,8 @@ def test_deploy(page: Page): page.fill("#s-libapps-email", os.environ.get("USERNAME")) page.fill("#s-libapps-password", os.environ.get("PASSWORD")) page.click("#s-libapps-login-button") + libapps_menu = page.locator("#s-lib-app-anchor") + libapps_menu.wait_for() for item in os.scandir("artifacts"): page.goto("/libapps/admin") page.click("#s-lib-app-anchor")