com.gargoylesoftware.htmlunit.html
Class HtmlImageInput
java.lang.Object
com.gargoylesoftware.htmlunit.html.DomNode
com.gargoylesoftware.htmlunit.html.DomNamespaceNode
com.gargoylesoftware.htmlunit.html.DomElement
com.gargoylesoftware.htmlunit.html.HtmlElement
com.gargoylesoftware.htmlunit.html.StyledElement
com.gargoylesoftware.htmlunit.html.ClickableElement
com.gargoylesoftware.htmlunit.html.FocusableElement
com.gargoylesoftware.htmlunit.html.HtmlInput
com.gargoylesoftware.htmlunit.html.HtmlImageInput
- All Implemented Interfaces:
- DisabledElement, SubmittableElement, Serializable, Cloneable
public class HtmlImageInput
- extends HtmlInput
Wrapper for the html element "input"
- Version:
- $Revision: 2132 $
- Author:
- Mike Bowler, David K. Taylor, Christian Sell, Marc Guillemot, Daniel Gredler, Ahmed Ashour
- See Also:
- Serialized Form
Fields inherited from class com.gargoylesoftware.htmlunit.html.DomNode |
ATTRIBUTE_NODE, COMMENT_NODE, DOCUMENT_NODE, ELEMENT_NODE, PROPERTY_ELEMENT, READY_STATE_COMPLETE, READY_STATE_INTERACTIVE, READY_STATE_LOADED, READY_STATE_LOADING, READY_STATE_UNINITIALIZED, TEXT_NODE |
Constructor Summary |
HtmlImageInput(HtmlPage page,
Map attributes)
Deprecated. You should not directly construct HtmlImageInput. |
Method Summary |
Page |
click()
Submit the form that contains this input. |
Page |
click(int x,
int y)
Simulate clicking this input with a pointing device. |
protected Page |
doClickAction(Page defaultPage)
This method will be called if there either wasn't an onclick handler or there was
but the result of that handler was true. |
KeyValuePair[] |
getSubmitKeyValuePairs()
Return an array of KeyValuePairs that are the values that will be sent
back to the server whenever the current form is submitted. |
void |
setDefaultValue(String defaultValue)
Sets the default value to use when this element gets reset, if applicable. Also sets the value attribute when emulating Netscape browsers. Also sets the value to the new default value, just like IE. |
Methods inherited from class com.gargoylesoftware.htmlunit.html.HtmlInput |
asText, getAcceptAttribute, getAccessKeyAttribute, getAlignAttribute, getAltAttribute, getCheckedAttribute, getDefaultValue, getDisabledAttribute, getMaxLengthAttribute, getNameAttribute, getOnBlurAttribute, getOnChangeAttribute, getOnFocusAttribute, getOnSelectAttribute, getReadOnlyAttribute, getSizeAttribute, getSrcAttribute, getTabIndexAttribute, getTypeAttribute, getUseMapAttribute, getValueAttribute, isChecked, isDefaultChecked, isDisabled, reset, setChecked, setDefaultChecked, setDefaultValue, setValueAttribute |
Methods inherited from class com.gargoylesoftware.htmlunit.html.ClickableElement |
click, click, dblClick, dblClick, getLangAttribute, getOnClickAttribute, getOnDblClickAttribute, getOnKeyDownAttribute, getOnKeyPressAttribute, getOnKeyUpAttribute, getOnMouseDownAttribute, getOnMouseMoveAttribute, getOnMouseOutAttribute, getOnMouseOverAttribute, getOnMouseUpAttribute, getTextDirectionAttribute, getXmlLangAttribute, isStateUpdateFirst |
Methods inherited from class com.gargoylesoftware.htmlunit.html.HtmlElement |
addHtmlAttributeChangeListener, appendChildIfNoneExists, assertNotEmpty, blur, cloneDomNode, cloneNode, fireEvent, fireEvent, fireHtmlAttributeAdded, fireHtmlAttributeRemoved, fireHtmlAttributeReplaced, focus, getAttribute, getAttributeEntriesIterator, getAttributeNS, getAttributeValue, getChildElementsIterator, getEnclosingElement, getEnclosingForm, getEnclosingFormOrDie, getEventHandler, getHtmlElementById, getHtmlElementsByAttribute, getHtmlElementsByTagName, getHtmlElementsByTagNames, getId, getNodeName, getNodeType, getOneHtmlElementByAttribute, getTabIndex, getTagName, hasAttribute, hasAttributeNS, hasAttributes, hasHtmlElementWithId, isAttributeDefined, isEmptyXmlTagExpanded, isSubmittableByEnter, keyDown, keyDown, mouseDown, mouseDown, mouseMove, mouseMove, mouseOut, mouseOut, mouseOver, mouseOver, mouseUp, mouseUp, notImplemented, preventDefault, printOpeningTagContentAsXml, printXml, removeAttribute, removeAttributeNS, removeChild, removeEventHandler, removeHtmlAttributeChangeListener, rightClick, rightClick, setAttribute, setAttributeNS, setAttributeValue, setAttributeValue, setEventHandler, setEventHandler, setId, toString, type, type, type, type |
Methods inherited from class com.gargoylesoftware.htmlunit.html.DomNode |
addDomChangeListener, addPropertyChangeListener, appendChild, appendDomChild, asXml, fireNodeAdded, fireNodeDeleted, firePropertyChange, getAllHtmlChildElements, getByXPath, getChildIterator, getChildrenAsText, getEndColumnNumber, getEndLineNumber, getFirstByXPath, getFirstChild, getFirstDomChild, getLastChild, getLastDomChild, getLog, getNativePage, getNextDomSibling, getNextSibling, getNodeValue, getPage, getParentDomNode, getParentNode, getPreviousDomSibling, getPreviousSibling, getReadyState, getScriptObject, getStartColumnNumber, getStartLineNumber, insertBefore, isAncestorOf, isTrimmedText, notifyIncorrectness, onAddedToPage, onAllChildrenAddedToPage, printChildrenAsXml, reduceWhitespace, remove, removeAllChildren, removeDomChangeListener, removePropertyChangeListener, replace, setNextSibling, setNodeValue, setParentNode, setPreviousSibling, setReadyState, setScriptObject |
HtmlImageInput
public HtmlImageInput(HtmlPage page,
Map attributes)
- Deprecated. You should not directly construct HtmlImageInput.
- Create an instance
- Parameters:
page
- The page that contains this elementattributes
- the initial attributes
getSubmitKeyValuePairs
public KeyValuePair[] getSubmitKeyValuePairs()
- Return an array of KeyValuePairs that are the values that will be sent
back to the server whenever the current form is submitted.
THIS METHOD IS INTENDED FOR THE USE OF THE FRAMEWORK ONLY AND SHOULD NOT
BE USED BY CONSUMERS OF HTMLUNIT. USE AT YOUR OWN RISK.
- Specified by:
getSubmitKeyValuePairs
in interface SubmittableElement
- Overrides:
getSubmitKeyValuePairs
in class HtmlInput
- Returns:
- See above
click
public Page click()
throws IOException
- Submit the form that contains this input. Only a couple of the inputs
support this method so it is made protected here. Those subclasses
that wish to expose it will override and make it public.
- Overrides:
click
in class ClickableElement
- Returns:
- The Page that is the result of submitting this page to the server
- Throws:
IOException
- If an io error occurs
doClickAction
protected Page doClickAction(Page defaultPage)
throws IOException
- This method will be called if there either wasn't an onclick handler or there was
but the result of that handler was true. This is the default behavior of clicking
the element. The default implementation returns the current page - subclasses
requiring different behavior (like
HtmlSubmitInput
) will override this
method.
- Overrides:
doClickAction
in class ClickableElement
- Parameters:
defaultPage
- The default page to return if the action does not
load a new page.
- Returns:
- The page that is currently loaded after execution of this method
- Throws:
IOException
- If an IO error occurred
click
public Page click(int x,
int y)
throws IOException,
ElementNotFoundException
- Simulate clicking this input with a pointing device. The x and y coordinates
of the pointing device will be sent to the server.
- Overrides:
click
in class HtmlInput
- Parameters:
x
- The x coordinate of the pointing device at the time of clickingy
- The y coordinate of the pointing device at the time of clicking
- Returns:
- The page that is loaded after the click has taken place.
- Throws:
IOException
- If an io error occurs
ElementNotFoundException
- If a particular xml element could not be found in the dom model
setDefaultValue
public void setDefaultValue(String defaultValue)
- Sets the default value to use when this element gets reset, if applicable. Also sets the value attribute when emulating Netscape browsers. Also sets the value to the new default value, just like IE.
- Specified by:
setDefaultValue
in interface SubmittableElement
- Overrides:
setDefaultValue
in class HtmlInput
- Parameters:
defaultValue
- The default value to use when this element gets reset, if applicable.- See Also:
SubmittableElement.setDefaultValue(String)
Copyright © 2002-2010 Gargoyle Software Inc.. All Rights Reserved.