hover method

Future<void> hover()

Implementation

Future<void> hover() async {
  await _scrollIntoViewIfNeeded();
  var point = await _clickablePoint();
  await page.mouse.move(point);
}