mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
2.1 KiB
2.1 KiB
sidebar_label
| sidebar_label |
|---|
| ExecutionContext |
ExecutionContext class
This class represents a context for JavaScript execution. A [Page] might have many execution contexts: - each frame has "default" execution context that is always created after frame is attached to DOM. This context is returned by the Frame.executionContext() method. - Extension's content scripts create additional execution contexts.
Besides pages, execution contexts can be found in workers.
Signature:
export declare class ExecutionContext
Remarks
The constructor for this class is marked as internal. Third-party code should not call the constructor directly or create subclasses that extend the ExecutionContext class.
Methods
| Method | Modifiers | Description |
|---|---|---|
| evaluate(pageFunction, args) | ||
| evaluateHandle(pageFunction, args) | ||
| frame() | ||
| queryObjects(prototypeHandle) | This method iterates the JavaScript heap and finds all the objects with the given prototype. |