Element Info & Attributes

Is End of Page

Determines whether the user has reached the end of the page (or main scrollable container) by checking scroll position and overflow behavior, and returns a boolean result

Examples

GPAL Fluent: High-level fluent C# API

//One of the few helper methods on Browser.

bool isEndOfPage = browser.IsEndOfPage()

MagicHelper: MagicHelper utility library

GPAL.MagicHelper.IsEndOfPage(string css);

GPAL.MagicHelper.IsEndOfPage(string xpath);

Puppeteer Client: Puppeteer-style C# client

browser.PuppeteerClient.IsEndOfPage().Execute();

Puppeteer Communicator: Low-level communicator

await browser.PuppeteerCommunicator.IsEndOfPage(string sessionId);

REST Client: Direct REST/HTTP client

GPAL.OttoMagicClient.WithEndpoint(ApiEndpoint.IsEndOfPage).WithCss(string css).Execute();

GPAL.OttoMagicClient.WithEndpoint(ApiEndpoint.IsEndOfPage).WithXPath(string xpath).Execute();

💬 Ask GPAL