Interaction

Left Double Click

Web elements are specified using either CSS or XPath.

Examples

GPAL Fluent: High-level fluent C# API

browser.WithSelector(selector).LeftDoubleClick()

browser.LeftDoubleClick(selector)

MagicHelper: MagicHelper utility library

GPAL.MagicHelper.LeftDoubleClick(string css);

GPAL.MagicHelper.LeftDoubleClick(string xpath);

Puppeteer Client: Puppeteer-style C# client

browser.PuppeteerClient.LeftDoubleClick(string css).Execute();

browser.PuppeteerClient.LeftDoubleClick(string xpath).Execute();

Puppeteer Communicator: Low-level communicator

await browser.PuppeteerCommunicator.LeftDoubleClick(string css, string sessionId);

await browser.PuppeteerCommunicator.LeftDoubleClick(string xpath, string sessionId);

REST Client: Direct REST/HTTP client

GPAL.OttoMagicClient.WithEndpoint(ApiEndpoint.LeftDoubleClick).WithCss(string css).Execute();

GPAL.OttoMagicClient.WithEndpoint(ApiEndpoint.LeftDoubleClick).WithXPath(string xpath).Execute();

💬 Ask GPAL