Tabs & Windows

Next Window

If the current window is the last indexed tab, it will cycle back to the first indexed window.

Examples

GPAL Fluent: High-level fluent C# API

browser.NextWindow()

MagicHelper: MagicHelper utility library

browser.MagicHelper.NextWindow();

Puppeteer Client: Puppeteer-style C# client

//PuppeteerClient does not expose a NextWindow method; only PuppeteerCommunicator implements this at a lower level.

browser.PuppeteerClient.NextWindow().Execute();

Puppeteer Communicator: Low-level communicator

await browser.PuppeteerCommunicator.NextWindow(string currentTargetId);

REST Client: Direct REST/HTTP client

browser.OttoMagicClient.WithEndpoint(ApiEndpoint.NextWindow).Execute();

💬 Ask GPAL