Reputation: 704
Why i am getting this error. which library file should i use to resolve this error.
Upvotes: 0
Views: 123
Reputation: 927
Looks like you don't have the selenium-android-driver jar. But the Android driver has been replaced by selendriod. Instead you should do:
WebDriver driver = new RemoteWebDriver(DesiredCapabilities.android());
Upvotes: 2