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

com.epam.jdiuitests.implementation.selenium.elements.common.FileInput Maven / Gradle / Ivy

The newest version!
package com.epam.jdiuitests.implementation.selenium.elements.common;

import com.epam.jdiuitests.implementation.selenium.elements.interfaces.common.IFileInput;
import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;

/**
 * Created by Roman_Iovlev on 7/10/2015.
 */
public class FileInput extends TextField implements IFileInput {
    public FileInput() {
        super();
    }

    public FileInput(By byLocator) {
        super(byLocator);
    }

    public FileInput(WebElement webElement) {
        super(webElement);
    }

    @Override
    protected void setValueAction(String value) {
        input(value);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy