Capture Screenshots in playwright Sumit Kumar Pradhan April 13, 2025 In this example we will explore how to capture different types of screenshots using Playwright, with practical code examples. To capture a ... Continue Reading
Handle Hidden Elements in dropdown in playwright Sumit Kumar Pradhan April 13, 2025 In this example we will explore how to effectively handle hidden dropdowns using Playwright, a robust framework for browser automation. Hi... Continue Reading
Handling Auto-Suggest/Auto-Complete dropdown in playwright Sumit Kumar Pradhan April 13, 2025 In this example we will see how to automate auto-suggest dropdown using Playwright. auto-suggest dropdowns — These are typically not native... Continue Reading
Working with Bootstrap dropdown in playwright Sumit Kumar Pradhan April 13, 2025 Bootstrap dropdown , which is not a native <select> element. That means Playwright can’t use selectOption() — you have to interact wi... Continue Reading
Working with Multi Select dropdown in playwright Sumit Kumar Pradhan April 13, 2025 In this example we are going to implement and test a multi-select dropdown using Playwright, a popular automation library for browser testi... Continue Reading
Working with Select dropdown in playwright Sumit Kumar Pradhan April 13, 2025 Working with <select> dropdowns in Playwright is pretty straightforward. You can use the selectOption() method to interact with <s... Continue Reading
Working with Input box ,Radio Buttons & Checkboxes In Playwright Sumit Kumar Pradhan April 12, 2025 Working with input boxes , radio buttons , and checkboxes in Playwright is pretty straightforward. Here's a quick guide with examples i... Continue Reading