Skip to content

Latest commit

 

History

History
28 lines (16 loc) · 999 Bytes

File metadata and controls

28 lines (16 loc) · 999 Bytes

BrowserLinksRequest

Properties

Name Type Description Notes
url String Absolute http(s) URL of the page to render.
waitUntil WaitUntilEnum When navigation is considered complete. `networkidle0` waits for the network to go idle (best for JavaScript-heavy pages); `load` is fastest. [optional]
timeoutMs Integer Navigation timeout in milliseconds (1000–60000). [optional]
visibleLinksOnly Boolean Only return links visible in the rendered viewport. [optional]
excludeExternalLinks Boolean Drop links that point to a different domain than the page. [optional]

Enum: WaitUntilEnum

Name Value
LOAD "load"
DOMCONTENTLOADED "domcontentloaded"
NETWORKIDLE0 "networkidle0"
NETWORKIDLE2 "networkidle2"