This commit is contained in:
2024-09-22 00:55:14 -04:00
parent 5a3258e56f
commit 7b3dcdf5db
21 changed files with 285 additions and 396 deletions
+11 -13
View File
@@ -3,11 +3,11 @@
<modelVersion>4.0.0</modelVersion>
<groupId>zacksolutions</groupId>
<artifactId>SeleniumIntro</artifactId>
<artifactId>testNG_FrameWork</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>SeleniumIntro</name>
<name>testNG_FrameWork</name>
<url>http://maven.apache.org</url>
<properties>
@@ -16,30 +16,28 @@
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
<!-- https://mvnrepository.com/artifact/org.testng/testng -->
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>7.10.2</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>4.24.0</version>
<version>4.25.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-surefire-plugin -->
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>7.1.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>