fix(test): Make language verification script more robust

This addresses feedback from CodeRabbitAI by using a regular expression for the language button's aria-label. This ensures the test can run regardless of the browser's default language.
This commit is contained in:
comeback01
2025-09-27 11:35:03 +02:00
parent 91ea27541c
commit 05d3ddb397

View File

@@ -1,5 +1,6 @@
from playwright.sync_api import sync_playwright, expect
import time
import re
def run(playwright):
browser = playwright.chromium.launch(headless=True)
@@ -10,8 +11,11 @@ def run(playwright):
page.goto("http://localhost:5173", wait_until="networkidle")
print("Page loaded")
# The aria-label is in Chinese in the source, so we use that.
language_button = page.get_by_role("button", name="切换语言")
# Use a regex to find the button by its aria-label in either Chinese or English.
language_button = page.get_by_role(
"button",
name=re.compile(r"(切换语言|Change Language)", re.IGNORECASE),
)
# Wait for the button to be visible
expect(language_button).to_be_visible()