Package org.openqa.selenium.htmlunit.w3
Class Action
- java.lang.Object
-
- org.openqa.selenium.htmlunit.w3.Action
-
public class Action extends Object
An action object constructed with arguments id, type, and subtype is an object with property id set to id, type set to type and subtype set to subtype. Specific action objects have further properties added by other algorithms in this specification.- Author:
- Ronald Brill
- See Also:
- action object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description HtmlUnitInputProcessor.HtmlUnitAction
buildHtmlUnitAction()
Integer
getButton()
DomElement
getDomElement()
Integer
getDuration()
String
getPointerType()
String
getValue()
void
setButton(int button)
void
setDomElement(DomElement domElement)
void
setDuration(int duration)
void
setPointerType(String pointerType)
void
setValue(String value)
String
toString()
-
-
-
Method Detail
-
getDuration
public Integer getDuration()
-
setDuration
public void setDuration(int duration)
-
getValue
public String getValue()
-
setValue
public void setValue(String value)
-
getPointerType
public String getPointerType()
-
setPointerType
public void setPointerType(String pointerType)
-
getButton
public Integer getButton()
-
setButton
public void setButton(int button)
-
getDomElement
public DomElement getDomElement()
-
setDomElement
public void setDomElement(DomElement domElement)
-
buildHtmlUnitAction
public HtmlUnitInputProcessor.HtmlUnitAction buildHtmlUnitAction()
-
-