use of com.epam.jdi.uitests.web.selenium.elements.common.Input in project page-factory-2 by sbtqa.
the class AbstractPage method fillField.
@ActionTitle("fill the field")
public void fillField(String elementTitle, String value) throws PageException {
Input element = (Input) JDIUtils.getElementByTitle(PageContext.getCurrentPage(), elementTitle);
element.sendKeys(value);
}
Aggregations