We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
TextField – single-line field for various text input: ex. login, password, search criteria, etc.
Example:
Here is the list of available methods.
TextField Initialization:
@FindBy(xpath = "//text-field xpath") public TextField textField;
Action > Examples:
@Test public void textFieldInputExample() { String text = "some text"; textField.input(text); Assert.assertEquals(textField.getText(), text); }
See more examples on GitHub