Class BrowsingContext

The BrowsingContext class provides methods for managing navigation contexts in a user agent.

Constructors

Properties

_events: BrowsingContextEvents
_ws: BiDi

Accessors

Methods

  • Makes the specified context the active context.

    Parameters

    • context: BrowsingContextActivateParameters

      The context to make active.

    Returns Promise<void>

  • Captures a screenshot of the specified browsing context.

    Parameters

    • contextParameters: BrowsingContextCaptureScreenshotParameters

      The context to capture a screenshot from.

    Returns Promise<CaptureScreenshotResult>

    The screenshot result.

  • Closes the specified top level browsing context.

    Parameters

    • closeParams: BrowsingContextCloseParameters

      The context to close.

    Returns Promise<void>

  • Creates a new top-level browsing context.

    Parameters

    • createContext: BrowsingContextCreateParameters

      The parameters to create a context with.

    Returns Promise<BrowsingContextCreateResult>

    The creation result.

  • Retrieves the tree of browsing contexts.

    Parameters

    • BrowsingContextTreeParams: BrowsingContextGetTreeParameters

      The parameters to get the context tree with.

    Returns Promise<BrowsingContextGetTreeResultType>

    The context tree.

  • Handles a user prompt.

    Parameters

    • promptParameters: BrowsingContextHandleUserPromptParameters

      The parameters to handle the prompt with.

    Returns Promise<void>

  • Locates nodes in a browsing context using a CSS or XPath selector.

    Parameters

    • locateNodeParams: BrowsingContextLocateNodesParameters

      The parameters to locate nodes with.

    Returns Promise<BrowsingContextLocateNodesResultType>

    The located nodes.

  • Navigates a browsing context to a new location.

    Parameters

    • navigateParams: BrowsingContextNavigateParameters

      The parameters to navigate with.

    Returns Promise<BrowsingContextNavigateResultType>

    The navigation result.

  • Prints the contents of a browsing context to a PDF.

    Parameters

    • printParameters: BrowsingContextPrintParams

      The parameters to print with.

    Returns Promise<BrowsingContextPrintResult>

    The print result.

  • Reloads the specified browsing context.

    Parameters

    • reloadParams: BrowsingContextReloadParameters

      The context to reload.

    Returns Promise<string>

    The reload result.

  • Sets the viewport size for the specific browsing context.

    Parameters

    • viewportParameters: BrowsingContextSetViewportParameters

      The parameters to set the viewport with.

    Returns Promise<void>

  • Traverses the history of a browsing context.

    Parameters

    • traverseHistoryParameters: BrowsingContextTraverseHistoryParameters

      The parameters to traverse history with.

    Returns Promise<void>