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

cz.datalite.webdriver.components.Textbox Maven / Gradle / Ivy

Go to download

Integration tests with Selenium 2.0 (WebDriver) - PageObjects pattern (still in beta)

The newest version!
package cz.datalite.webdriver.components;

import org.openqa.selenium.WebElement;

/**
 * This component is the mirror of ZK Textbox element.
 * 
 * @author Karel Cemus
 */
public class Textbox extends InputElement {

    public Textbox( final ZkElement parent, final WebElement webElement ) {
        super( parent, webElement );
    }

    public void autoFill() {
        write( "Lorem ipsum dolor" );
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy