All Downloads are FREE. Search and download functionalities are using the official Maven repository.

mmarquee.automation.controls.PasswordEditBox Maven / Gradle / Ivy

There is a newer version: 0.7.0
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy