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

com.codeborne.selenide.appium.ScreenObject Maven / Gradle / Ivy

There is a newer version: 7.5.1
Show newest version
package com.codeborne.selenide.appium;

import static com.codeborne.selenide.Selenide.page;

public class ScreenObject {
  /**
   * Create a Page Object instance.
   */
  public static  PageObjectClass screen(Class pageObjectClass) {
    return page(pageObjectClass);
  }

  /**
   * Initialize a Page Object fields annotated with @FindBy, @AndroidFindBy, @iOSFindBy etc.
   */
  public static  PageObjectClass screen(T pageObject) {
    return page(pageObject);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy