2022-07-05 13:41:43 +00:00
|
|
|
---
|
|
|
|
sidebar_label: Frame.executionContext
|
|
|
|
---
|
|
|
|
|
|
|
|
# Frame.executionContext() method
|
|
|
|
|
|
|
|
**Signature:**
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
class Frame {
|
|
|
|
executionContext(): Promise<ExecutionContext>;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
Promise<[ExecutionContext](./puppeteer.executioncontext.md)>
|
|
|
|
|
|
|
|
a promise that resolves to the frame's default execution context.
|