Skip to content

Latest commit

 

History

History
62 lines (56 loc) · 3.08 KB

File metadata and controls

62 lines (56 loc) · 3.08 KB

Selenium.dev

Learning testing with Selenium Java

This is a personal project aimed at improving my skills in automated testing with Selenium Java. The project was created exclusively for learning testing with Selenium Java and to showcase my abilities.

Project structure

/selenium-automation-tester-course
  ├── .github
  │   └── workflows
  │       └── selenium-tests-main.yml
  ├── snippets
  │   └── alert-handling.md
  ├── src
  │   ├── main
  │   │   ├── java
  │   │   │   └── org.example
  │   │   └── resources
  │   └── test
  │       └── java
  │           ├── BrowserDriverManager.java
  │           ├── BrowserSetupTest.java
  │           ├── CloseWindowTest.java
  │           ├── LocatingElementsByClassTest.java
  │           ├── LocatingElementsByIdTest.java
  │           ├── LocatingElementsByNameTest.java
  │           ├── OpenBookingPageTest.java
  │           ├── SeleniumTest.java
  │           ├── Test01GoogleComTest.java
  │           ├── Test02SeleniumDemoComTest.java
  │           ├── WebDriverManagerTest.java
  │           └── ZeroTemplateTest.java
  ├── tips
  │   ├── conventional-commits.md
  │   ├── git.md
  │   ├── meven-phases.md
  │   └── shortcuts.md
  ├── .gitignore
  ├── pom.xml
  └── README.md

Install

MVN REPOSITORY

Tutorials