All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.percy.appium.providers.ProviderResolver Maven / Gradle / Ivy

package io.percy.appium.providers;

import io.appium.java_client.AppiumDriver;

public class ProviderResolver {

    public static GenericProvider resolveProvider(AppiumDriver driver) {
        if (AppAutomate.supports(driver)) {
            return new AppAutomate(driver);
        } else {
            return new GenericProvider(driver);
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy