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
Working with browser context using hooks in playwright Sumit Kumar Pradhan May 03, 2025Learn to work with browser context in Playwright using hooks. Our expert insights and practical tips will elevate your automation testing sk... Continue Reading
How to Copy a File in Node.js? Sumit Kumar Pradhan May 02, 2025Node.js, with its robust file system (fs) module, offers several methods to copy files. Whether you’re building a command-line tool, a web s... Continue Reading