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
Playwright - locator.waitFor() Sumit Kumar Pradhan April 12, 2025 locator.waitFor() in Playwright is used to explicitly wait for an element to appear in the DOM and be ready for interaction (visible, attac... Continue Reading
CSS nth-match and nth-element locator in playwright Sumit Kumar Pradhan April 12, 2025In Playwright, :nth-match() is a selector engine pseudo-class that allows you to select the nth element among a list of elements that match... Continue Reading
Working with Chrome, Firefox and WebKit browser in Playwright Sumit Kumar Pradhan April 12, 2025 Playwright is a powerful Node.js library for browser automation that supports multiple browsers, including Chrome , Firefox , and WebKit .... Continue Reading