@Retention(value=RUNTIME) @Target(value={TYPE,FIELD}) public @interface Name
@Name("My Form")
@FindBy(css = "my_form_css")
public class MyForm extends HtmlElement {
@Name("Text input name")
@FindBy(css = "text_input_css")
private TextInput textInput;
// Other elements and methods here
}
public abstract String value
Copyright © 2023 Yandex. All rights reserved.