Interaction

Fill In Append

Updates an active text field by appending the specified text to its existing value if the field supports text input.

Examples

GPAL Fluent: High-level fluent C# API

browser.WithSelector(selector).AppendFrom(string text)

MagicHelper: MagicHelper utility library

GPAL.MagicHelper.FillInAppend(string css, string text);

GPAL.MagicHelper.FillInAppend(string xpath, string text);

Puppeteer Client: Puppeteer-style C# client

browser.PuppeteerClient.FillInAppend(string css).WithText(string text).Execute();

browser.PuppeteerClient.FillInAppend(string xpath).WithText(string text).Execute();

Puppeteer Communicator: Low-level communicator

await browser.PuppeteerCommunicator.FillInAppend(string objectId, string text, string sessionId);

REST Client: Direct REST/HTTP client

//Text fields are web elements specified by either CSS or XPath.

GPAL.OttoMagicClient.WithEndpoint(ApiEndpoint.FillInAppend).WithCss(string css).WithText(string text).Execute();

GPAL.OttoMagicClient.WithEndpoint(ApiEndpoint.FillInAppend).WithXPath(string xpath).WithText(string text).Execute();

💬 Ask GPAL