This project is a continuation of JUnit with Selenium project. Here, we replace JUnit by TestNG since TestNG is an automation testing framework inspired by JUnit and overcomes the disadvantages of JUnit (parallel tests, advanced annotations, grouping tests, ease of use, ..) and is designed to make end-to-end testing easy.
we will be testing the same scenario :
- User chooses a platform
- User adds some todos
- User removes some todos
The test suite will be the following :
Page Object Pattern is applied in this project too to get a cleaner code.