views:

70

answers:

1

Hi,

I have been using Selenium Webdriver successfully with JAR downloaded from their pages or code.google. But now I would like convert my project to use Maven repository. I found out that my required classes are in support module of webdriver and confirmed it in their repository ( classes Wait, WebDriverWait, ExpectedCondition). So I have linked required dependency webdriver-support-module but these classes weren't here.

Can anybody explain to me why the classes from this module aren't in this module in Maven repository and tell me where I can find them? I will be really grateful. Thanks a lot.

+2  A: 

You do not need to reference each module separately, just add a whole Selenium 2.0a5 (currently the latest one) dependency:

<dependency>
    <groupId>org.seleniumhq.selenium</groupId>
    <artifactId>selenium</artifactId>
    <version>2.0a5</version>
    <type>jar</type>
</dependency>
ZloiAdun
Amazing! It's working. Thanks a lot!
Gaim