3. Testing Frameworks for Selenium
Testing framework is necessary to organize our tests. When the count of automated test increases it becomes very tediuos to manage them. Test frameworks provide us with below features.
Setting up data before tests run
Cleaning up data after tests are finished
Creating suites to run multiple tests
Externalize configurations from actual scripts
Integration with CI server
We will be using TestNG as our framework of choice, however we will also briefly cover a Junit Test.
Last updated
Was this helpful?