Module 31 -Maven | Selenium Forum
M
Posted on 30/11/2015
Hi team ,

When i run mvn compile in cmd prompt i am getting error which I have attached.

below is the latest selenium dependency
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium</artifactId>
<version>2.0rc2</version>
</dependency>
</dependencies>
</project>

M
Replied on 01/12/2015

[quote:dwusjjxz]<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium</artifactId>
<version>2.0rc2</version>[/quote:dwusjjxz]

version is wrong. correct a version.


M
Replied on 01/12/2015

I have copied the same version which shows in website. In fact if i add version "2.5.0" also i am getting same issue

Responsive image

M
Replied on 01/12/2015

you want to use Selenium RC or Selenium Webdriver?


M
Replied on 07/12/2015

Selenium webdriver


M
Replied on 09/12/2015

use this

<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>2.48.2</version>
</dependency>