+ getSupportedApplications());
}
// if more than one matches it returns the last in the list (highest version for MobileSafari)
APPIOSApplication app = matchingApps.get(matchingApps.size() - 1);
AppleLanguage lang = AppleLanguage.create(desiredCapabilities.getLanguage());
return app.createInstance(lang);
}
public List<APPIOSApplication> findAllMatchingApplications(IOSCapabilities desiredCapabilities) {
List<APPIOSApplication> matchingApps = new ArrayList<>();