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

android.AndroidScreenObject Maven / Gradle / Ivy

The newest version!
package android;

import io.appium.java_client.pagefactory.AppiumFieldDecorator;
import org.openqa.selenium.support.PageFactory;

import static android.AndroidDriverInitializer.androidDriver;

/**
 * Created by Ismail on 6/3/2018.
 */
public class AndroidScreenObject {

    static Object childClass;

    public AndroidScreenObject() {
        childClass = this;
    }

    // Initialize WebElements for WebPageObject class
    public static void initElements() {
        PageFactory.initElements(new AppiumFieldDecorator(androidDriver), childClass);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy