use of com.testsigma.automator.entity.AppPathType in project testsigma by testsigmahq.
the class IosDriver method setHybridCapabilities.
@Override
protected void setHybridCapabilities() throws AutomatorException, MalformedURLException {
super.setHybridCapabilities();
AppPathType appPathType = settings.getAppPathType();
if (appPathType == AppPathType.APP_DETAILS) {
capabilities.add(new WebDriverCapability(TSCapabilityType.BUNDLE_ID, settings.getBundleId()));
}
}
Aggregations