Screenshot and Video in Playwright Python We will discuss taking screenshots and recording videos in Playwright python Read More
Handle Tabs and Windows in Playwright Python We will use page.expect_page() from Playwright to handle the tabs/windows, once we store the page in a new variable we can use both the new page and the old page simultaneously Read More
Handle IFrames in Playwright Python When a developer wants to showcase a different webpage on the current page, then they use frames to show the webpage. It is like showing live shows on television. The page that is shown in the frame c Read More
Pytest with Python Pytest provides a structured way for creating test cases with Python, using pytest we can pinpoint which functionalities are failing by creating a test for each functionality. We can also selectively Read More
Handle dropdowns in Playwright Python This article provides insight on how to interact with different types of dropdowns using Playwright in Python. It distinguishes between standard and custom dropdowns, providing methods for selecting o Read More
Element State with Playwright Python The article explores Playwright Python methods for assessing HTML element states. Key methods like is_checked() for selection, is_hidden() for absence, and is_visible() for perceptibility are discusse Read More
Handle checkbox in Playwright Python The check() function ensures a checkbox is selected, uncheck() deselects it, and is_checked() verifies its state. These functions provide a reliable approach, crucial for scenarios like login pages w Read More
Page level commands in Playwright Python This article introduces basic operations using Playwright, focusing on commonly used functions such as `goto()` for navigating to URLs, `page.url` for getting the current URL, `page.title()` for retri Read More
Navigation commands in Playwright python We discuss the usage of the goto(), go_back(), go_forward(), and reload() methods in web automation using Playwright. These methods allow users to navigate to specific web pages, move back and forth b Read More
Click and custom click in Playwright Python In Playwright Python, when dealing with multiple element matches, it's essential to handle potential exceptions. Unlike Selenium, Playwright does not automatically click the first match. A custom func Read More