[Home](./index.md) > [puppeteer](./puppeteer.md) > [Protocol](./puppeteer.protocol.md) > [Debugger](./puppeteer.protocol.debugger.md) > [SetScriptSourceRequest](./puppeteer.protocol.debugger.setscriptsourcerequest.md) ## Protocol.Debugger.SetScriptSourceRequest interface Signature: ```typescript export interface SetScriptSourceRequest ``` ## Properties | Property | Type | Description | | --- | --- | --- | | [dryRun](./puppeteer.protocol.debugger.setscriptsourcerequest.dryrun.md) | boolean | If true the change will not actually be applied. Dry run may be used to get result description without actually modifying the code. | | [scriptId](./puppeteer.protocol.debugger.setscriptsourcerequest.scriptid.md) | [Runtime.ScriptId](./puppeteer.protocol.runtime.scriptid.md) | Id of the script to edit. | | [scriptSource](./puppeteer.protocol.debugger.setscriptsourcerequest.scriptsource.md) | string | New content of the script. |