double_click method
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;
}