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.0
Show newest version
package com.codeborne.selenide.appium;

import com.codeborne.selenide.Selenide;

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

public class ScreenObject {
  /**
   * Create a Page Object instance.
   * 
* It's just an alias for {@link Selenide#page(Class)} * * @see Selenide#page(Class) */ public static PageObjectClass screen(Class pageObjectClass) { return page(pageObjectClass); } /** * Initialize a Page Object fields annotated with @FindBy, @AndroidFindBy, @iOSFindBy etc. *
* It's just an alias for {@link Selenide#page(Object)} * * @see Selenide#page(Object) */ public static PageObjectClass screen(T pageObject) { return page(pageObject); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy