cz.datalite.webdriver.components.Button Maven / Gradle / Ivy
                 Go to download
                
        
                    Show more of this group  Show more artifacts with this name
Show all versions of Selenium Show documentation
                Show all versions of Selenium Show documentation
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;
/**
 * Mirror of ZK Button
 *
 * @author Karel Cemus
 */
public class Button extends ZkElement {
    public Button( final ZkElement parent, final WebElement webElement ) {
        super( parent, webElement );
    }
    public void click() {
        webElement.click();
        zkDriver.sleep(100);
        zkDriver.waitForProcessing();
    }
}
    © 2015 - 2025 Weber Informatics LLC | Privacy Policy