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

com.epam.jdi.light.elements.base.UIElement Maven / Gradle / Ivy

package com.epam.jdi.light.elements.base;

/**
 * Created by Roman Iovlev on 14.02.2018
 * Email: [email protected]; Skype: roman.iovlev
 */

import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;

import java.util.List;

public class UIElement extends BaseUIElement {
    public UIElement() { setInitClass(UIElement.class); }
    public UIElement(WebElement el) { this(); webElement.setForce(el); }
    public UIElement(List els) { this(); webElements.setForce(els); }
    public UIElement(By locator) { this(); setLocator(locator); }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy