@Retention(value=RUNTIME) @Target(value={TYPE,FIELD}) public @interface Timeout
@FindBy(css = "my_form_css")
@Timeout(3)
public class MyForm extends HtmlElement {
@FindBy(css = "text_input_css")
@Timeout(3)
private TextInput textInput;
// Other elements and methods here
}
| Modifier and Type | Required Element and Description |
|---|---|
int |
value |
Copyright © 2023 Yandex. All rights reserved.