From c5d2f477dca56c74891f4f61c38237b6dd2130bf Mon Sep 17 00:00:00 2001 From: "Grail Finder (aider)" Date: Sat, 5 Apr 2025 15:15:08 +0300 Subject: fix: update test selectors and question text for reliability --- internal/handlers/handlers_test.go | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'internal/handlers/handlers_test.go') diff --git a/internal/handlers/handlers_test.go b/internal/handlers/handlers_test.go index a74be30..1ddaad3 100644 --- a/internal/handlers/handlers_test.go +++ b/internal/handlers/handlers_test.go @@ -42,12 +42,18 @@ func TestQuestionFlow(t *testing.T) { }) assert.NoError(err, "Page content did not load") - // Verify question text exists - questionText, err := page.Locator("[data-testid='question']").TextContent() + // Verify question text exists and contains expected content + questionLocator := page.Locator("[data-testid='question']") + visible, err := questionLocator.IsVisible() + if err != nil || !visible { + assert.FailNow("Question text not visible", err) + } + + questionText, err := questionLocator.TextContent() if err != nil { - assert.FailNow("Question text not found", err) + assert.FailNow("Failed to get question text", err) } - assert.Contains(questionText, "Zweifel", "Question text mismatch") + assert.Contains(questionText, "Zweifel", "Question text should contain 'Zweifel'") // Set reasonable timeout for light site page.SetDefaultTimeout(2000) -- cgit v1.2.3