right_click method
Implementation
Future<Online> right_click(AbstractSelector selector,
{bool show = true}) async {
if (show) Show.action('right clicking', selector.selector);
await (await page).click(selector.selector, button: MouseButton.right);
return this;
}