user2953186
user2953186

Reputation: 19

SelendroidDriver cannot be resolved

I am trying to test a Selendroid test on Eclipse and followed the necessary steps on how to run it. Unfortunately, the two libraries that are mentioned above cannot be resolved to a type. I have added all the necessary jar files in the build path however, but it still cannot be resolved. Is there another way to resolve this problem? Images as here:

enter image description here

enter image description here

Upvotes: 1

Views: 468

Answers (1)

Sugandha Jain
Sugandha Jain

Reputation: 353

I struggled a lot with this error and finally came to know that the paths have been changed in the latest releases. Use these paths and it shall work:

import io.selendroid.common.SelendroidCapabilities;

import io.selendroid.client.SelendroidDriver;

Tested this for versions 0.15.0 and 0.17.0

Upvotes: 0

Related Questions