mmarquee.automation.controls.PasswordEditBox Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ui-automation Show documentation
Show all versions of ui-automation Show documentation
A Java library that wraps the MS UIAutomation library.
package mmarquee.automation.controls;
import mmarquee.automation.AutomationException;
/**
* Wrapper around the PasswordEditBox control.
*/
public final class PasswordEditBox extends EditBox {
/**
* The class name.
*/
public static final String CLASS_NAME = "PasswordBox";
/**
* Construct the PasswordEditBox.
* @param builder The builder
* @throws AutomationException Error in automation library
*/
public PasswordEditBox(final ElementBuilder builder)
throws AutomationException {
super(builder);
assertClassName(CLASS_NAME);
}
}