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

com.sdl.selenium.extjs3.button.HtmlFileUploadButton Maven / Gradle / Ivy

Go to download

Automated Acceptance Testing. Selenium and Selenium WebDriver test framework for web applications. (optimized for dynamic html, ExtJS, Bootstrap, complex UI, simple web applications/sites)

The newest version!
package com.sdl.selenium.extjs3.button;

import com.sdl.selenium.web.WebLocator;
import com.sdl.selenium.web.button.SelectFilesHandler;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class HtmlFileUploadButton extends SelectFilesHandler {
    private static final Logger LOGGER = LoggerFactory.getLogger(HtmlFileUploadButton.class);

    public HtmlFileUploadButton() {
//        setClassName("HtmlFileUploadButton");
        //logger.debug(getClassName() + "() constructor");
    }

    public HtmlFileUploadButton(WebLocator container, String text) {
        this();
        //setContainer(container);
        WebLocator button = new Button(container, text);
        setButtonElement(button);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy