Reputation: 3
As DesiredCapabilities are deprecated, do anyone know if there is any capability for Android and iOS devices to perform testing on actual devices using Selenium C#?
Upvotes: 0
Views: 109
Reputation: 41
Add following as the capabilities to test Android or IOS apps
AppiumOptions opt = new AppiumOptions();
opt.AddAdditionalCapability("browserName", "chrome");
opt.AddAdditionalCapability("automationName", "UiAutomator2");
opt.AddAdditionalCapability()...
Upvotes: 0