Playwright_Python/PWneemoPY/playwright/basic/first_testcase.py

14 lines
488 B
Python
Raw Normal View History

2023-08-15 16:39:40 +00:00
from playwright.sync_api import Page
import pytest
def test_example(page: Page) -> None:
page.goto("https://www.google.com/")
page.get_by_role("button", name="Přijmout vše").click()
page.get_by_label("Najít").click()
page.get_by_label("Najít").fill("playwright")
page.get_by_label("Hledat Googlem").first.click()
page.get_by_role("link", name="Playwright: Fast and reliable end-to-end testing for modern ... playwright.dev https://playwright.dev").click()