Example usage for org.openqa.selenium.lift.find InputFinder InputFinder

List of usage examples for org.openqa.selenium.lift.find InputFinder InputFinder

Introduction

In this page you can find the example usage for org.openqa.selenium.lift.find InputFinder InputFinder.

Prototype

InputFinder

Source Link

Usage

From source file:org.openmrs.Steps.java

License:Mozilla Public License

protected HtmlTagFinder passwordtextbox() {
    return new InputFinder().with(attribute("type", equalTo("password")));
}

From source file:org.openmrs.Steps.java

License:Mozilla Public License

protected HtmlTagFinder checkbox() {
    return new InputFinder().with(attribute("type", equalTo("checkbox")));
}