mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
1.3 KiB
1.3 KiB
Home > puppeteer > Protocol > Debugger > SetVariableValueRequest
Protocol.Debugger.SetVariableValueRequest interface
Signature:
export interface SetVariableValueRequest
Properties
Property | Type | Description |
---|---|---|
callFrameId | CallFrameId | Id of callframe that holds variable. |
newValue | Runtime.CallArgument | New variable value. |
scopeNumber | integer | 0-based number of scope as was listed in scope chain. Only 'local', 'closure' and 'catch' scope types are allowed. Other scopes could be manipulated manually. |
variableName | string | Variable name. |