Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 738 Bytes

README.md

File metadata and controls

31 lines (20 loc) · 738 Bytes

Project Automation Infleta

@Nahuel Rodriguez

Description

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.

Instructions

  1. Create maven project in your favorite IDE.
  2. 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>