double_click method

Future<Online> double_click(
  1. AbstractSelector selector
)

Implementation

Future<Online> double_click(AbstractSelector selector) async {
  Show.action('double click', selector.selector);
  await (await page).waitForSelector(selector.selector);
  await (await page).click(selector.selector, clickCount: 2);
  return this;
}