Package org.openqa.selenium.htmlunit.w3
Class Algorithms
- java.lang.Object
-
- org.openqa.selenium.htmlunit.w3.Algorithms
-
public final class Algorithms extends Object
To follow the spec as close as possible we have this collection of mehtods and no object oriented design.- Author:
- Ronald Brill
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
dispatchActions(List<List<Action>> actionsByTick, HtmlUnitInputProcessor inputProcessor)
static List<List<Action>>
extractActionSequence(Collection<org.openqa.selenium.interactions.Sequence> sequences)
-
-
-
Method Detail
-
extractActionSequence
public static List<List<Action>> extractActionSequence(Collection<org.openqa.selenium.interactions.Sequence> sequences)
- Parameters:
sequences
- the sequences- Returns:
- actions by tick
- See Also:
- extract an action sequence
-
dispatchActions
public static void dispatchActions(List<List<Action>> actionsByTick, HtmlUnitInputProcessor inputProcessor)
- Parameters:
actionsByTick
- actions by tickinputProcessor
- the HtmlUnitInputProcessor- See Also:
- dispatch actions
-
-