down abstract method

Future<void> down(
  1. MouseButton button, {
  2. PageLoaderElement? eventTarget,
  3. ClickOption? clickOption,
})

Press button on the mouse at its current location with clickOption. If eventTarget is specified, PageLoader will attempt to fire the corresponding mouse events on that target, otherwise it will fire the events on the target that is under the current mouse location. clickOption is only used for Html.

Implementation

Future<void> down(MouseButton button,
    {PageLoaderElement? eventTarget, ClickOption? clickOption});