Navigation

Go To URL

Navigate the browser to a new page.

Navigate the browser to a new page.

Updates the URL of the current active tab to a specified URL.

Examples

GPAL Fluent: High-level fluent C# API

browser.GoTo(string url)

MagicHelper: MagicHelper utility library

GPAL.MagicHelper.GoTo(string url);

Puppeteer Client: Puppeteer-style C# client

browser.PuppeteerClient.GoTo(string url).Execute();

Puppeteer Communicator: Low-level communicator

await browser.PuppeteerCommunicator.GoTo(string url, string sessionId);

REST Client: Direct REST/HTTP client

GPAL.OttoMagicClient.WithEndpoint(ApiEndpoint.GoTo).WithUrl(string url).Execute();