About 600 results
Open links in new tab
  1. Fast and reliable end-to-end testing for modern web apps | Playwright

    Test scenarios that span multiple tabs, multiple origins and multiple users. Create scenarios with different contexts for different users and run them against your server, all in one test.

  2. Installation | Playwright

    After a test run, the HTML Reporter provides a dashboard filterable by the browser, passed, failed, skipped, flaky and more. Click a test to inspect errors, attachments and steps.

  3. Writing tests | Playwright

    Playwright tests are simple: they perform actions and assert the state against expectations. Playwright automatically waits for actionability checks to pass before performing each action.

  4. Getting started - VS Code | Playwright

    The Playwright VS Code extension brings the power of Playwright Test directly into your editor, allowing you to run, debug, and generate tests with a seamless UI-driven experience.

  5. Playwright Test | Playwright

    Playwright runs this test and ensures that it is actually failing. This is useful for documentation purposes to acknowledge that some functionality is broken until it is fixed.

  6. Running and debugging tests | Playwright

    You can run your tests with the playwright test command. This runs your tests on all browsers as configured in the playwright.config file, and results appear in the terminal.

  7. Best Practices | Playwright

    Playwright has a test generator that can generate tests and pick locators for you. It will look at your page and figure out the best locator, prioritizing role, text and test id locators.

  8. Playwright Test Agents

    Playwright comes with three Playwright Test Agents out of the box: 🎭 planner, 🎭 generator and 🎭 healer. These agents can be used independently, sequentially, or as the chained calls in the agentic loop.

  9. Library | Playwright

    Under most circumstances, for end-to-end testing, you'll want to use @playwright/test (Playwright Test), and not playwright (Playwright Library) directly. To get started with Playwright Test, follow the Getting …

  10. API testing | Playwright

    APIRequestContext can send all kinds of HTTP (S) requests over network. The following example demonstrates how to use Playwright to test issues creation via GitHub API. The test suite will do the …