28293031323334
public CalendarMonthInspector(ElementInspector element) { super(element); } public ElementInspector index(int index) { return new ElementByLocatorInspector(id() + CalendarRenderer.DROP_SUFFIX + "_" + index); }
32333435363738
public ElementInspector index(int index) { return new ElementByLocatorInspector(id() + CalendarRenderer.DROP_SUFFIX + "_" + index); } public ElementInspector drop() { return new ElementByLocatorInspector(id() + CalendarRenderer.DROP_SUFFIX); }
19202122232425
* @author Andrii Gorbatov */ public class TwoListSelectionSideInspector extends ElementByReferenceInspector { public TwoListSelectionSideInspector(String locator) { super(new ElementByLocatorInspector(locator)); }
* @author Dmitry Pikhulya */ public class DropDownFieldInspector extends DropDownComponentInspector { public DropDownFieldInspector(String locator) { super(new ElementByLocatorInspector(locator)); }
27282930313233
public DropDownFieldInspector(ElementInspector element) { super(element); } public ElementInspector button() { return new ElementByLocatorInspector(id() + DropDownComponentRenderer.BUTTON_SUFFIX); }
26272829303132
public ForEachInspector(ElementInspector element) { super(element); } public ForEachInspector(String locator) { super(new ElementByLocatorInspector(locator)); }
25262728293031
/** * @author Dmitry Pikhulya */ public class FoldingPanelInspector extends ElementByReferenceInspector { public FoldingPanelInspector(String locator) { super(new ElementByLocatorInspector(locator)); }
33343536373839
public FoldingPanelInspector(ElementInspector element) { super(element); } public ElementInspector caption() { return new ElementByLocatorInspector(id() + ComponentWithCaptionRenderer.CAPTION_SUFFIX); }
37383940414243
public ElementInspector caption() { return new ElementByLocatorInspector(id() + ComponentWithCaptionRenderer.CAPTION_SUFFIX); } public ElementInspector content() { return new ElementByLocatorInspector(id() + FoldingPanelRenderer.CONTENT_SUFFIX); }
public BorderLayoutPanelInspector(ElementInspector element) { super(element); } public BorderLayoutPanelInspector(String locator) { super(new ElementByLocatorInspector(locator)); }