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

automated.test_manage.run.MobileTestCaseRunner Maven / Gradle / Ivy

The newest version!
package automated.test_manage.run;

import automated.platforms.mobile.MobileActions;
import automated.test_manage.config.Platform;

/**
 * Created by Ismail on 12/28/2017.
 * This class for Custom Mobile Actions Section
 * and to inherit all generic actions from TestCaseRunner
 */
public class MobileTestCaseRunner extends TestCaseRunner {

    /*************** Class Methods Section ***************/
    // This constructor return platform
    // default variable value as Mobile
    public MobileTestCaseRunner() {
        Platform.platform = "mobile";
    }

    /***************** Actions Implementation Section *****************/
    // This method to apply Pull to refresh screen on mobile
    protected void pullToRefresh(){
        MobileActions.pullToRefresh();
    }

    /***************** Assertion Actions Section *****************/
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy