Category Archive : Selenium

Gradle will build a test result automatically when you run script by gradle clean test command.

You can find it this location:

PROJECT_ROOT_FOLDER>build>reports>tests>test>index.html

Open the index.html file and you will see the test result.

But this report looks like ugly. … Read more

TestNG is a testing framework like JUnit that provides some new functionalities. Now we will modify our previous project and integrate it with TestNG.

Run IntelIJ. Go to File > Open

Go to project location and select build.gradle

Now click … Read more

What is Page Object Model in Selenium?

Page Object Model, also known as POM is a design pattern in Selenium that creates an object repository for storing all web elements. It is effective to optimize code and improves test case … Read more