Package org.seleniuminspector

Examples of org.seleniuminspector.ElementByLocatorInspector


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

    public ElementInspector index(int index) {
        return new ElementByLocatorInspector(id() + CalendarRenderer.DROP_SUFFIX + "_" + index);
    }
View Full Code Here


    public ElementInspector index(int index) {
        return new ElementByLocatorInspector(id() + CalendarRenderer.DROP_SUFFIX + "_" + index);
    }

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

* @author Andrii Gorbatov
*/
public class TwoListSelectionSideInspector extends ElementByReferenceInspector {

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

* @author Dmitry Pikhulya
*/
public class DropDownFieldInspector extends DropDownComponentInspector {

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

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

    public ElementInspector button() {
        return new ElementByLocatorInspector(id() + DropDownComponentRenderer.BUTTON_SUFFIX);
    }
View Full Code Here

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

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

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

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

    public ElementInspector caption() {
        return new ElementByLocatorInspector(id() + ComponentWithCaptionRenderer.CAPTION_SUFFIX);
    }
View Full Code Here

    public ElementInspector caption() {
        return new ElementByLocatorInspector(id() + ComponentWithCaptionRenderer.CAPTION_SUFFIX);
    }

    public ElementInspector content() {
        return new ElementByLocatorInspector(id() + FoldingPanelRenderer.CONTENT_SUFFIX);
    }
View Full Code Here

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

    public BorderLayoutPanelInspector(String locator) {
        super(new ElementByLocatorInspector(locator));
    }
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.