com.codeborne.selenide.As Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of selenide-core Show documentation
Show all versions of selenide-core Show documentation
Selenide = concise API for Selenium WebDriver
The newest version!
package com.codeborne.selenide;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Human-readable alias for page object field
*
* Applicable only for elements initialized by {@link com.codeborne.selenide.impl.SelenidePageFactory}.
* Usually it means elements annotated by {@link org.openqa.selenium.support.FindBy}, {@link org.openqa.selenium.support.FindBys} etc.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD})
public @interface As {
String value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy