Hi,
What is maven code for selenium maven dependency which I can add to pom.xml file?
Thanks
Hi,
In your pom.xml file add following code:
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>3.141.59</version>
</dependency>
This will download all required libraries for selenium in your machine and include to your project.
Thanks
Hi,
Now I got junit error and it was solved by adding following dependency:
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
Thanks