20 lines
708 B
XML
20 lines
708 B
XML
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
<groupId>TestingSelenium</groupId>
|
||
|
|
<artifactId>TestingSeleniumFirst</artifactId>
|
||
|
|
<version>v0.1</version>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
||
|
|
<artifactId>selenium-java</artifactId>
|
||
|
|
<version>4.26.0</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>io.github.bonigarcia</groupId>
|
||
|
|
<artifactId>webdrivermanager</artifactId>
|
||
|
|
<version>5.8.0</version>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
</project>
|