<P extends Page> P |
HtmlImageInput.click(int x,
int y) |
Simulate clicking this input with a pointing device.
|
HtmlAnchor |
HtmlPage.getAnchorByHref(java.lang.String href) |
|
HtmlAnchor |
HtmlPage.getAnchorByName(java.lang.String name) |
|
HtmlAnchor |
HtmlPage.getAnchorByText(java.lang.String text) |
Returns the first anchor with the specified text.
|
HtmlButton |
HtmlForm.getButtonByName(java.lang.String name) |
Returns the first HtmlButton element in this form that has the specified name.
|
<E extends DomElement> E |
HtmlPage.getElementByName(java.lang.String name) |
Returns the element with the specified name.
|
HtmlForm |
HtmlPage.getFormByName(java.lang.String name) |
Returns the first form that matches the specified name.
|
FrameWindow |
HtmlPage.getFrameByName(java.lang.String name) |
Returns the first frame contained in this page with the specified name.
|
<E extends HtmlElement> E |
HtmlPage.getHtmlElementById(java.lang.String elementId) |
Returns the HTML element with the specified ID.
|
<I extends HtmlInput> I |
HtmlForm.getInputByName(java.lang.String name) |
Returns the first input element which is a member of this form and has the specified name.
|
<I extends HtmlInput> I |
HtmlForm.getInputByValue(java.lang.String value) |
Returns the first input in this form with the specified value.
|
<E extends HtmlElement> E |
HtmlElement.getOneHtmlElementByAttribute(java.lang.String elementName,
java.lang.String attributeName,
java.lang.String attributeValue) |
Searches for an element based on the specified criteria, returning the first element which matches
said criteria.
|
HtmlOption |
HtmlSelect.getOptionByText(java.lang.String text) |
Returns the HtmlOption object that has the specified text.
|
HtmlOption |
HtmlSelect.getOptionByValue(java.lang.String value) |
Returns the HtmlOption object that corresponds to the specified value.
|
HtmlTableRow |
HtmlTable.getRowById(java.lang.String id) |
Finds and return the row with the specified id.
|
HtmlSelect |
HtmlForm.getSelectByName(java.lang.String name) |
Returns the first HtmlSelect element in this form that has the specified name.
|
HtmlTextArea |
HtmlForm.getTextAreaByName(java.lang.String name) |
Returns the first HtmlTextArea element in this form that has the specified name.
|