Network & Downloads

Attach File

Examples

GPAL Fluent: High-level fluent C# API

browser.WithSelector(selector).LeftClickAndUpload(GPALFile gPalFileToUpload)

Puppeteer Client: Puppeteer-style C# client

browser.PuppeteerClient.LeftClickAndUpload(string css).UploadFrom(GPALFile fileToUpload).Execute(); browser.PuppeteerClient.LeftClickAndUpload(string xpath).UploadFrom(GPALFile fileToUpload).Execute();

Puppeteer Communicator: Low-level communicator

await browser.PuppeteerCommunicator.LeftClickAndUpload(List<GPALElement> elems, object uploadFiles, int modifiers, string sessionId, List<dynamic> responses);