How To Make Playwright Undetectable Sumit Kumar Pradhan May 01, 2025Making Playwright undetectable can be a complex process because many websites employ techniques to detect automation tools like Playwright. ... Continue Reading
How to scroll to the bottom of the page with Playwright? Sumit Kumar Pradhan May 01, 2025When automating web applications, scrolling to the top or bottom of a page can be essential, especially for triggering lazy loading, infinit... Continue Reading
Page Object Model Pattern in playwright Sumit Kumar Pradhan April 30, 2025 The Page Object Pattern is a design pattern commonly used in automated UI testing, particularly with tools like Selenium WebDriver, to enha... Continue Reading
How to fix issue that deprecated page.waitForTimeout() method usage Sumit Kumar Pradhan April 30, 2025The page.waitForTimeout() method in Playwright is deprecated because it relies on hardcoded delays, which can lead to flaky tests. Playwrigh... Continue Reading
Playwright force click on hidden element Sumit Kumar Pradhan April 30, 2025 In Playwright, forcing a click on a hidden element might not work due to the library's built-in checks for element visibility and inter... Continue Reading
How to Use a Proxy with Playwright Sumit Kumar Pradhan April 29, 2025 You can assign a proxy server per browser instance in Playwright using JavaScript. This is useful for web scraping when you need to rotate ... Continue Reading
Block Scripts, Styles, Media in Playwright Sumit Kumar Pradhan April 29, 2025 Playwright is a powerful browser automation tool from Microsoft, used for testing, scraping, or automating web interactions. But sometimes,... Continue Reading