Python Cheat Sheet & Quick Reference Sumit Kumar Pradhan May 29, 2025Python is the most popular programming language in data science. Use this cheat sheet to jumpstart your Python learning journey. Continue Reading
Add global beforeEach / afterEach hooks using Playwright automatic fixtures Sumit Kumar Pradhan May 29, 2025In this example we will explore how to use global beforeEach and afterEach implementation using playwright automatic fixtures. Playwright’s ... Continue Reading
find() and filter() in javascript Sumit Kumar Pradhan May 27, 2025 In this explore explore implementation of find() and filter() function in JavaScript with simple example. There are various ways to extract... Continue Reading
Integrating Playwright with CI/CD Tools - Github Actions Sumit Kumar Pradhan May 27, 2025In this example we will explore how to use GitHub Action in playwright to automate the CI/CD pipeline. Playwright tests can be run on any CI... Continue Reading
Common Playwright Commands Sumit Kumar Pradhan May 26, 2025In this example we will explore different type of commands used in playwright to run tests. Thanks to Microsoft's Playwright, running en... Continue Reading
How to Read and Write Excel file in Node.js and playwright ? Sumit Kumar Pradhan May 25, 2025In this example we will explore how to read and write data in excel sheet in JavaScript using node NPM module. To read and write Excel file ... Continue Reading
Key Design Patterns for Effective Test Automation Sumit Kumar Pradhan May 25, 2025This example we will explore how to use different design pattern for effective test automation framework in playwright automation. It helps ... Continue Reading
Testing in Incognito Mode with Playwright Sumit Kumar Pradhan May 25, 2025Testing in incognito mode is crucial for ensuring that your application behaves as expected for users who prefer private browsing. Playwrigh... Continue Reading
Understanding TypeScript Operators: !, ?, ??, and ?. Explained Sumit Kumar Pradhan May 24, 2025In this example we will explore how to use TypeScript Operators: ! , ? , ?? , and ?. with simple example in typescript project as well playw... Continue Reading
How to combine POMs (Page Object Models) with Playwright Fixtures for better developer experience Sumit Kumar Pradhan May 24, 2025Playwright fixtures and traditional Page Object Models (POM) are both used in test automation, but they serve different purposes and can be ... Continue Reading
Fixtures (Built-in Fixtures) in Playwright with basic example Sumit Kumar Pradhan May 24, 2025In this example we will explore how to use built in fixture in playwright with simple example. When writing end-to-end tests with Playwright... Continue Reading
Use Playwright's addLocatorHandler to close unpredictable UI elements Sumit Kumar Pradhan May 24, 2025In this example we will explore how to use addLocatorHandler in playwright . Playwright’s addLocatorHandler is a powerful tool for handling ... Continue Reading
How to Generate PDFs with Playwright Sumit Kumar Pradhan May 23, 2025In this example we will explore how to generate PDFs with playwright with simple example. To generate PDFs using Playwright, you can use the... Continue Reading
Verifying PDF file data in Playwright Sumit Kumar Pradhan May 21, 2025In this example we will explore how to verify pdf text in playwright. Playwright, an open-source automation framework, does not have built-i... Continue Reading
Creating Custom Assertions Through Extending Expect in Playwright Sumit Kumar Pradhan May 21, 2025In this example we are going to explore how to create custom assertion in playwright by extending expect. Creating custom assertions in Play... Continue Reading
How to Get and Use Cookies in Playwright: A Step-by-Step Guide for Beginners Sumit Kumar Pradhan May 19, 2025In this example we will explore how to work with cookies in playwright with simple examples. Cookies are essential for maintaining state and... Continue Reading
Testing Staging and Production environments in Playwright Sumit Kumar Pradhan May 19, 2025In this example we will explore how to work with different environments in playwright with example. When testing a website, you may need to ... Continue Reading
How to update a partial URL in playwright Sumit Kumar Pradhan May 19, 2025In this example we will explore how to update partial URL in playwright . To update a partial URL in Playwright, you can use page.goto() wit... Continue Reading
How to Perform API Intercept Using Playwright Sumit Kumar Pradhan May 19, 2025In this example we will explore how to perform api intercept in playwright. Along with the UI Automation , we can also intercept specific AP... Continue Reading
How to disable ESLint for some lines, files or folders Sumit Kumar Pradhan May 14, 2025 In this example we will explore how to disable ESLint for specific lines, files and folder with particle examples. Disabling ESLint for spe... Continue Reading