Understanding storage state example in playwright Sumit Kumar Pradhan May 09, 2025In this example we will explore how to implement storage state in playwright with example. storage state refers to saving and loading the br... Continue Reading
Best ways to Parameterize tests in playwright Sumit Kumar Pradhan May 05, 2025In this example we will explore various technique to parameterize the test in playwright. In Playwright, parameterization typically refers t... Continue Reading
A better global setup in Playwright with project dependencies Sumit Kumar Pradhan May 05, 2025 In this example we will explore how to use a better global setup in playwright with project dependencies. Project dependencies are a list o... Continue Reading
Configure globalSetup and globalTeardown in playwright Sumit Kumar Pradhan May 05, 2025In this example we will expore how to configure globalSetup and globalTeardown in Playwright, you need to create a setup file (e.g., global-... Continue Reading
Efficiently Sharing Context in Parallel Tests with Playwright Sumit Kumar Pradhan May 04, 2025In this example we will explore how to share browser, context and page in multiple test during parallel execution in playwright. Parallel ex... Continue Reading
How to run tests that failed during the last test run in playwright Sumit Kumar Pradhan May 03, 2025When working with automated testing, one of the most common and time-saving features developers need is the ability to rerun only the tests ... Continue Reading
How to test flaky tests in Playwright using command line Sumit Kumar Pradhan May 03, 2025Flaky tests often stem from race conditions, timeouts, or environmental differences. These CLI flags help by repeating tests to expose incon... Continue Reading