Playwright Traceviewer Made Easy!

Опубликовано: 04 Декабрь 2024
на канале: CommitQuality
3,082
38

In this video, we explore how to use Playwright Trace Viewer to troubleshoot your web applications. Playwright is a popular automation testing tool for web applications, and Trace Viewer helps you visualize your tests and track down issues more easily. We'll cover the basics of Trace Viewer and walk you through a step-by-step guide on how to use it effectively. Whether you're a seasoned Playwright user or new to the tool, this video is a must-watch!



trace.playwright.dev.

Code:
await page.goto("https://computer-database.gatling.io/...");
await page.getByText("Add a new computer").click();
await page.locator("#name").fill("CommitQuality");
await page.locator("#introduced").fill("1999-12-12");
await page.locator("#introduced").fill("1999-12-12");
await page.locator("#discontinued").fill("2000-12-12");
await page.locator("#company").selectOption({ label: "Apple Inc." });
await page.getByText("Createe this computer").click();
await expect(
page.getByText("Done ! Computer CommitQuality has been created")
).toBeVisible();

Load traces using: https://trace.playwright.dev/