Anandkumaranandpak.hashnode.dev·Sep 14, 2024Step-by-Step Guide to Using Playwright for Page Interactions and Assertions 🌠When automating web testing, it's not just about finding elements on a page — it's about interacting with them and verifying that they behave as expected. In this blog, we’ll explore how Playwright helps you handle user interactions and assert condit...Discussplaywright
Kunaal Thanikkunaal.hashnode.dev·Sep 5, 2024CH02 - PageObjects, Fixtures, PytestChapter 02 - how to use Page Object Models, Fixtures, pyTest mark, Environment Variables, pytest.ini and conftest Recap: https://kunaal.hashnode.dev/automation-ch01-initialization Previously, we set up the testing framework using Playwright and Pytho...DiscussPython Playwright UI Automationplaywright
Kunaal Thanikkunaal.hashnode.dev·Jul 26, 2024Page Object ModelThe Page Object Model (POM) is a design pattern in software testing where web page elements are represented as objects. Each page class encapsulates the page's behaviors and elements, promoting code reusability and maintainability by separating test ...Discuss·1 likeAutomation Conceptspage-object-model
Debasmita Adhikaridebasmita-a.hashnode.dev·May 27, 2024Automation Testing Framework using Selenium WebDriver and Java : Day 5In the last article of POM Automated Testing framework series, we learnt how to run our tests from command prompt with Maven commands and TestNG .xml with help of Surefire plugin. Remote configurations in test script : In order to run our tests on re...DiscussPage Object Model FrameworkRemoteWebDriver
Avishek Beheratechiewolf.hashnode.dev·Apr 26, 2024Web Automation ( Java and Selenium): Using LoadableComponent to Make Page Object more conciseIntroduction This article explains a nice way to make Page Object more meaningful and to reduce code duplication to validate the page load behaviour.I would recommend first reading about the Page Object Model in Test automation if you are not familia...DiscussWeb UI Test Automation - Java and Seleniumselenium
Fabio Diastheclevertester.hashnode.dev·Apr 16, 2024Page Object ModelUndoubtedly, Page Objects represent the predominant approach in test automation design for modeling web pages into framework classes. Despite some misconceptions within the testing community regarding its relevance, I'll demonstrate how this concept ...Discuss·511 readsFundamentals for Test Automation Frameworksbdd
Hassanhassanyu.hashnode.dev·Mar 31, 2024How to Implement POM Design Pattern with SeleniumIn this article, we'll discuss the advantages of using the Page Object Model (POM) for automated testing with Selenium, Java, and JUnit 5. First, we'll explain what POM is and then try writing tests without it. During this process, we'll note any dif...Discuss·146 readsselenium
Jovan IlićforCloudflight Engineering Blogengineering.cloudflight.io·Jun 13, 2023Test automation: API-based modelThe King Is Dead, Long Live The King As technology evolves, industries are constantly updating their practices to keep up with the latest advancements. Old, although widely used technologies do have a shelf-life, thus at some point need to be exchang...Discuss·832 readsPOM
Rain Robinsonrainswerld.com·Nov 16, 2022How I Used 2 Windows for 1 Test in SeleniumbaseI recently came across a test case where I needed to open the same URL in two different sessions to simulate two users interacting with the same DOM. I use Seleniumbase to automate my tests, but I couldn’t find an example or documentation to illustra...Discuss·193 readsTesting