Skip to content

Commit

Permalink
fix integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
Lendemor committed Jan 24, 2025
1 parent 8c3defa commit a978684
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/tests_playwright/test_link_hover.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def test_link_hover(link_app: AppHarness, page: Page):
assert link_app.frontend_url is not None
page.goto(link_app.frontend_url)

link = page.get_by_role("link")
link = page.get_by_role("link").nth(1)
expect(link).to_have_text("Click me")
expect(link).to_have_css("color", "rgb(0, 0, 255)")
link.hover()
Expand Down

0 comments on commit a978684

Please sign in to comment.