Package org.openqa.selenium.htmlunit
Class HtmlUnitInputProcessor.PointerHtmlUnitAction
- java.lang.Object
-
- org.openqa.selenium.htmlunit.HtmlUnitInputProcessor.PointerHtmlUnitAction
-
- All Implemented Interfaces:
HtmlUnitInputProcessor.HtmlUnitAction
- Direct Known Subclasses:
HtmlUnitInputProcessor.PointerDownHtmlUnitAction,HtmlUnitInputProcessor.PointerUpHtmlUnitAction
- Enclosing class:
- HtmlUnitInputProcessor
public abstract static class HtmlUnitInputProcessor.PointerHtmlUnitAction extends Object
Base class for pointer actions that operate on a specific button. Subclasses represent concrete pointer events such as press or release.
-
-
Constructor Summary
Constructors Constructor Description PointerHtmlUnitAction(DomElement domElement, int button)Creates a new pointer action for the specified element and button.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetButton()Returns the mouse button associated with this action.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.openqa.selenium.htmlunit.HtmlUnitInputProcessor.HtmlUnitAction
join, process
-
-
-
-
Constructor Detail
-
PointerHtmlUnitAction
public PointerHtmlUnitAction(DomElement domElement, int button)
Creates a new pointer action for the specified element and button.- Parameters:
domElement- the target element associated with the pointer eventbutton- the mouse button involved in the action
-
-