Interaction

Page Down

Moves the current page's scroll position downward by approximately one viewport height if additional content exists below the visible area.

Examples

GPAL Fluent: High-level fluent C# API

browser.PageDown

MagicHelper: MagicHelper utility library

GPAL.MagicHelper.PageDown();

Puppeteer Client: Puppeteer-style C# client

browser.PuppeteerClient.PageDown().Execute();

Puppeteer Communicator: Low-level communicator

await browser.PuppeteerCommunicator.PageDown(int pagesToScroll, string sessionId);

REST Client: Direct REST/HTTP client

GPAL.OttoMagicClient.WithEndpoint(ApiEndpoint.PageDown).Execute();

💬 Ask GPAL