Package org.seleniuminspector

Examples of org.seleniuminspector.ElementByLocatorInspector


        super(element);
        assertNodeName("textarea");
    }

    public TextAreaInspector(String locator) {
        super(new ElementByLocatorInspector(locator));
        assertNodeName("textarea");
    }
View Full Code Here


    public TableInspector(ElementInspector tableElement) {
        super(tableElement);
    }

    public TableInspector(String locator) {
        super(new ElementByLocatorInspector(locator));
    }
View Full Code Here

        super(ulElement);
        assertNodeName("ul");
    }

    public UlInspector(String locator) {
        super(new ElementByLocatorInspector(locator));
        assertNodeName("ul");
    }
View Full Code Here

        super(inputElement);
        assertNodeName("input");
    }

    public InputInspector(String locator) {
        super(new ElementByLocatorInspector(locator));
        assertNodeName("input");
    }
View Full Code Here

/**
* @author Dmitry Pikhulya
*/
public class PopupLayerInspector extends ElementByReferenceInspector {
    public PopupLayerInspector(String locator) {
        super(new ElementByLocatorInspector(locator));
    }
View Full Code Here

    public PopupLayerInspector(ElementInspector element) {
        super(element);
    }

    public ElementInspector modalLayer() {
        return new ElementByLocatorInspector(id() + PopupLayerRenderer.BLOCKING_LAYER_SUFFIX);
    }
View Full Code Here

public class CalendarInspector extends ElementByReferenceInspector {

    private ElementInspector body;

    public CalendarInspector(String locator) {
        super(new ElementByLocatorInspector(locator));
    }
View Full Code Here

        super(element);
    }

    public ElementInspector body() {
        if (body == null)
            body = new ElementByLocatorInspector(id() + CalendarRenderer.BODY_SUFFIX);
        return body;
    }
View Full Code Here

            body = new ElementByLocatorInspector(id() + CalendarRenderer.BODY_SUFFIX);
        return body;
    }

    public ElementInspector today() {
        return new ElementByLocatorInspector(id() + CalendarRenderer.TODAY_SELECTOR_SUFFIX);
    }
View Full Code Here

    public CalendarMonthInspector month() {
        return new CalendarMonthInspector(id() + CalendarRenderer.MONTH_SELECTOR_SUFFIX);
    }

    public ElementInspector monthIncrease() {
        return new ElementByLocatorInspector(id() + CalendarRenderer.MONTH_INCREASE_SELECTOR_SUFFIX);
    }
View Full Code Here

TOP

Related Classes of org.seleniuminspector.ElementByLocatorInspector

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.