Tabs & Windows

Normal

Ensures the current browser window is neither minimized, maximized, nor fullscreen.

Examples

GPAL Fluent: High-level fluent C# API

//The browser names this one Restore. It brings a window back from maximized or full screen, and is a property rather than a method, like Maximize and Minimize beside it.

browser.Restore

MagicHelper: MagicHelper utility library

browser.MagicHelper.Normal();

Puppeteer Client: Puppeteer-style C# client

browser.PuppeteerClient.Normal().Execute();

Puppeteer Communicator: Low-level communicator

await browser.PuppeteerCommunicator.Normal(string sessionId);

REST Client: Direct REST/HTTP client

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

💬 Ask GPAL