android.AndroidTestCase Maven / Gradle / Ivy
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 *****************/
}