This is a test project developed in Java using Selenium librarie, TestNG. Its purpose is to calculate if it is convenient to buy in cash or in installments.
- Create maven project in your favorite IDE.
- Add dependencies in pom.xml file.
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>4.19.1</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>7.8.0</version>
<scope>test</scope>
</dependency>