Reputation: 33605
I am using selenium IDE (1.5.0) to make test cases, and I want to export them as Junit so that I can run them with Maven, but i can see different Junit options, and i am confused which one to choose:
Please advise, thanks.
Upvotes: 0
Views: 1317
Reputation: 11326
There is a comparison of the trade-offs in the documentation. In short, the Java version of WebDriver provides an implementation of the Selenium-RC API. It is largely included for backward compatibility you should use pure WebDriver if you can.
Upvotes: 2