#HomeTask
the project written in Intellij IDE with Spring Framework. The tests run with TestNG framework on Chrome browser.
//pom file:
4.0.0 org.springframework.boot spring-boot-starter-parent 2.5.1 com.example spring-selenium 0.0.1-SNAPSHOT spring-selenium home task <java.version>11</java.version> <selenium.version>3.141.59</selenium.version> <webdrivermanager.version>3.8.1</webdrivermanager.version> <testng.version>7.1.0</testng.version> org.springframework.boot spring-boot-starter
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>4.1.2</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>${selenium.version}</version>
</dependency>
<dependency>
<groupId>io.github.bonigarcia</groupId>
<artifactId>webdrivermanager</artifactId>
<version>${webdrivermanager.version}</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${testng.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
</plugin>
</plugins>
</build>
the test in TodoMVCTEST class just run the class. :)