Reputation: 479
I am using serenity-bdd with cucumber-jvm for my test framework. I want to run my tests on android emulator using Appium.
Serenity-bdd by default instantiate webdriver which opens firefox. How can I execute my webdriver tests on android emulator?
Upvotes: 0
Views: 839
Reputation: 16
driver = new AndroidDriver<>(new URL("http://127.0.0.1:4723/wd/hub"), capabilities);
Upvotes: 0