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

android.AndroidTestCase Maven / Gradle / Ivy

There is a newer version: 1.3.0
Show newest version
package android;

import io.appium.java_client.android.AndroidElement;

/**
 * Created by Ismail on 12/28/2017.
 * This class for Android Actions Section and to call actions from AndroidActions
 */
public class AndroidTestCase extends TestNGMethods {

    /*************** Class Methods Section ***************/

    /***************** Action Methods Section *****************/
    // This method to apply Pull to refresh screen
    protected void pullToRefresh() {
        AndroidActions.pullToRefresh();
    }

    // This method to apply tab action to AndroidElement
    protected void tab(AndroidElement androidElement){
        AndroidActions.tab(androidElement);
    }

    /***************** Assertion Methods Section *****************/
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy