Vanshika Sharmavanshikablogs.hashnode.dev·Aug 31, 2024Mastering the Page Object Model in Selenium with Java: Best Practices with ExamplesWhen it comes to test automation, maintaining a clean and scalable framework is crucial. The Page Object Model (POM) is a popular design pattern in Selenium that offers a structured way to handle web elements and interactions, leading to more maintai...DiscussPOM
nailhaenailhae.hashnode.dev·Mar 18, 2024에러 해결 Could not find artifact org.springframework.boot:springboot-starter-jdbc:pom:unknown in central (https://repo.maven.apache.org/maven2)Spring Boot를 공부하면서 jdbc 의존성을 추가했는데 에러가 발생했고, 해결한 과정을 소개합니다. 개발환경 M2 Air IntelliJ Maven 추가한 의존성 내용 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>springboot-starter-jdbc</artifactId> </de...Discuss·27 readsSpringboot
Pankaj Suryavanshidevtestops.hashnode.dev·Jan 25, 2024Page Object Model and Page FactoryIntroduction The Page Object Model (POM) and Page Factory are design patterns in test automation that enhance code maintainability and readability. POM abstracts web pages into objects, promoting reusability, while Page Factory streamlines the initia...DiscussSelenium Javaselenium
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
Shruti Pawarscriptsbyshruti.hashnode.dev·Feb 26, 2023MAVEN- The Building ToolMaven is an automation and project management tool. It is developed by Apache Software Foundation. It is based on POM (Project Object Model). maven can build any number of projects into the desired outlook such as .Jar, .war and metadata. It is mostl...Krishnakant Phate and 1 other are discussing this2 people are discussing thisDiscuss·91 likes·83 readsmaven
Md Zinnun Uddinzinnun.hashnode.dev·Jul 9, 2022Page Object Model & PageFactory in Selenium✒️ What is Page Object Model? POM is a design pattern in Selenium that creates an Object Repository to store web elements. In POM, we follow the principle of separation of Object Repository and Test Classes. Each object repository only contains the e...Discuss·61 readsTesting