{ | |
"version": { "major": "1", "minor": "1" }, | |
"domains": [{ | |
"domain": "Inspector", | |
"hidden": true, | |
"types": [], | |
"commands": [ | |
{ | |
"name": "enable", | |
"description": "Enables inspector domain notifications." | |
}, | |
{ | |
"name": "disable", | |
"description": "Disables inspector domain notifications." | |
}, | |
{ | |
"name": "reset", | |
"description": "Resets all domains." | |
} | |
], | |
"events": [ | |
{ | |
"name": "evaluateForTestInFrontend", | |
"parameters": [ | |
{ "name": "testCallId", "type": "integer" }, | |
{ "name": "script", "type": "string" } | |
] | |
}, | |
{ | |
"name": "inspect", | |
"parameters": [ | |
{ "name": "object", "$ref": "Runtime.RemoteObject" }, | |
{ "name": "hints", "type": "object" } | |
] | |
}, | |
{ | |
"name": "detached", | |
"description": "Fired when remote debugging connection is about to be terminated. Contains detach reason.", | |
"parameters": [ | |
{ "name": "reason", "type": "string", "description": "The reason why connection has been terminated." } | |
] | |
}, | |
{ | |
"name": "targetCrashed", | |
"description": "Fired when debugging target has crashed" | |
} | |
] | |
}, | |
{ | |
"domain": "Memory", | |
"hidden": true, | |
"types": [ | |
{ | |
"id": "MemoryBlock", | |
"type": "object", | |
"properties": [ | |
{ "name": "size", "type": "number", "optional": true, "description": "Size of the block in bytes if available" }, | |
{ "name": "name", "type": "string", "description": "Unique name used to identify the component that allocated this block" }, | |
{ "name": "children", "type": "array", "optional": true, "items": { "$ref": "MemoryBlock" }} | |
] | |
}, | |
{ | |
"id": "HeapSnapshotChunk", | |
"type": "object", | |
"properties": [ | |
{ "name": "strings", "type": "array", "items": { "type": "string" }, "description": "An array of strings that were found since last update." }, | |
{ "name": "nodes", "type": "array", "items": { "type": "integer" }, "description": "An array of nodes that were found since last update." }, | |
{ "name": "edges", "type": "array", "items": { "type": "integer" }, "description": "An array of edges that were found since last update." }, | |
{ "name": "baseToRealNodeId", "type": "array", "items": { "type": "integer" }, "description": "An array of integers for nodeId remapping. Even nodeId has to be mapped to the following odd nodeId." } | |
] | |
} | |
], | |
"commands": [ | |
{ | |
"name": "getDOMCounters", | |
"returns": [ | |
{ "name": "documents", "type": "integer" }, | |
{ "name": "nodes", "type": "integer" }, | |
{ "name": "jsEventListeners", "type": "integer" } | |
] | |
} | |
], | |
"events": [ | |
{ | |
"name": "addNativeSnapshotChunk", | |
"parameters": [ | |
{ "name": "chunk", "$ref": "HeapSnapshotChunk", "description": "A chunk of the serialized the snapshot." } | |
] | |
} | |
] | |
}, | |
{ | |
"domain": "Page", | |
"description": "Actions and events related to the inspected page belong to the page domain.", | |
"types": [ | |
{ | |
"id": "ResourceType", | |
"type": "string", | |
"enum": ["Document", "Stylesheet", "Image", "Font", "Script", "XHR", "WebSocket", "Other"], | |
"description": "Resource type as it was perceived by the rendering engine." | |
}, | |
{ | |
"id": "FrameId", | |
"type": "string", | |
"description": "Unique frame identifier." | |
}, | |
{ | |
"id": "Frame", | |
"type": "object", | |
"description": "Information about the Frame on the page.", | |
"properties": [ | |
{ "name": "id", "type": "string", "description": "Frame unique identifier." }, | |
{ "name": "parentId", "type": "string", "optional": true, "description": "Parent frame identifier." }, | |
{ "name": "loaderId", "$ref": "Network.LoaderId", "description": "Identifier of the loader associated with this frame." }, | |
{ "name": "name", "type": "string", "optional": true, "description": "Frame's name as specified in the tag." }, | |
{ "name": "url", "type": "string", "description": "Frame document's URL." }, | |
{ "name": "securityOrigin", "type": "string", "description": "Frame document's security origin." }, | |
{ "name": "mimeType", "type": "string", "description": "Frame document's mimeType as determined by the browser." } | |
] | |
}, | |
{ | |
"id": "FrameResourceTree", | |
"type": "object", | |
"description": "Information about the Frame hierarchy along with their cached resources.", | |
"properties": [ | |
{ "name": "frame", "$ref": "Frame", "description": "Frame information for this tree item." }, | |
{ "name": "childFrames", "type": "array", "optional": true, "items": { "$ref": "FrameResourceTree" }, "description": "Child frames." }, | |
{ "name": "resources", "type": "array", | |
"items": { | |
"type": "object", | |
"properties": [ | |
{ "name": "url", "type": "string", "description": "Resource URL." }, | |
{ "name": "type", "$ref": "ResourceType", "description": "Type of this resource." }, | |
{ "name": "mimeType", "type": "string", "description": "Resource mimeType as determined by the browser." }, | |
{ "name": "failed", "type": "boolean", "optional": true, "description": "True if the resource failed to load." }, | |
{ "name": "canceled", "type": "boolean", "optional": true, "description": "True if the resource was canceled during loading." } | |
] | |
}, | |
"description": "Information about frame resources." | |
} | |
], | |
"hidden": true | |
}, | |
{ | |
"id": "SearchMatch", | |
"type": "object", | |
"description": "Search match for resource.", | |
"properties": [ | |
{ "name": "lineNumber", "type": "number", "description": "Line number in resource content." }, | |
{ "name": "lineContent", "type": "string", "description": "Line with match content." } | |
], | |
"hidden": true | |
}, | |
{ | |
"id": "Cookie", | |
"type": "object", | |
"description": "Cookie object", | |
"properties": [ | |
{ "name": "name", "type": "string", "description": "Cookie name." }, | |
{ "name": "value", "type": "string", "description": "Cookie value." }, | |
{ "name": "domain", "type": "string", "description": "Cookie domain." }, | |
{ "name": "path", "type": "string", "description": "Cookie path." }, | |
{ "name": "expires", "type": "number", "description": "Cookie expires." }, | |
{ "name": "size", "type": "integer", "description": "Cookie size." }, | |
{ "name": "httpOnly", "type": "boolean", "description": "True if cookie is http-only." }, | |
{ "name": "secure", "type": "boolean", "description": "True if cookie is secure." }, | |
{ "name": "session", "type": "boolean", "description": "True in case of session cookie." } | |
], | |
"hidden": true | |
}, | |
{ | |
"id": "ScriptIdentifier", | |
"type": "string", | |
"description": "Unique script identifier.", | |
"hidden": true | |
}, | |
{ | |
"id": "NavigationEntry", | |
"type": "object", | |
"description": "Navigation history entry.", | |
"properties": [ | |
{ "name": "id", "type": "integer", "description": "Unique id of the navigation history entry." }, | |
{ "name": "url", "type": "string", "description": "URL of the navigation history entry." }, | |
{ "name": "title", "type": "string", "description": "Title of the navigation history entry." } | |
], | |
"hidden": true | |
} | |
], | |
"commands": [ | |
{ | |
"name": "enable", | |
"description": "Enables page domain notifications." | |
}, | |
{ | |
"name": "disable", | |
"description": "Disables page domain notifications." | |
}, | |
{ | |
"name": "addScriptToEvaluateOnLoad", | |
"parameters": [ | |
{ "name": "scriptSource", "type": "string" } | |
], | |
"returns": [ | |
{ "name": "identifier", "$ref": "ScriptIdentifier", "description": "Identifier of the added script." } | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "removeScriptToEvaluateOnLoad", | |
"parameters": [ | |
{ "name": "identifier", "$ref": "ScriptIdentifier" } | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "reload", | |
"parameters": [ | |
{ "name": "ignoreCache", "type": "boolean", "optional": true, "description": "If true, browser cache is ignored (as if the user pressed Shift+refresh)." }, | |
{ "name": "scriptToEvaluateOnLoad", "type": "string", "optional": true, "description": "If set, the script will be injected into all frames of the inspected page after reload." }, | |
{ "name": "scriptPreprocessor", "type": "string", "optional": true, "description": "Script body that should evaluate to function that will preprocess all the scripts before their compilation.", "hidden": true } | |
], | |
"description": "Reloads given page optionally ignoring the cache." | |
}, | |
{ | |
"name": "navigate", | |
"parameters": [ | |
{ "name": "url", "type": "string", "description": "URL to navigate the page to." } | |
], | |
"description": "Navigates current page to the given URL." | |
}, | |
{ | |
"name": "getNavigationHistory", | |
"parameters": [], | |
"returns": [ | |
{ "name": "currentIndex", "type": "integer", "description": "Index of the current navigation history entry." }, | |
{ "name": "entries", "type": "array", "items": { "$ref": "NavigationEntry"}, "description": "Array of navigation history entries." } | |
], | |
"description": "Returns navigation history for the current page.", | |
"hidden": true | |
}, | |
{ | |
"name": "navigateToHistoryEntry", | |
"parameters": [ | |
{ "name": "entryId", "type": "integer", "description": "Unique id of the entry to navigate to." } | |
], | |
"description": "Navigates current page to the given history entry.", | |
"hidden": true | |
}, | |
{ | |
"name": "getCookies", | |
"returns": [ | |
{ "name": "cookies", "type": "array", "items": { "$ref": "Cookie"}, "description": "Array of cookie objects." }, | |
{ "name": "cookiesString", "type": "string", "description": "document.cookie string representation of the cookies." } | |
], | |
"description": "Returns all browser cookies. Depending on the backend support, will either return detailed cookie information in the <code>cookie</code> field or string cookie representation using <code>cookieString</code>.", | |
"hidden": true | |
}, | |
{ | |
"name": "deleteCookie", | |
"parameters": [ | |
{ "name": "cookieName", "type": "string", "description": "Name of the cookie to remove." }, | |
{ "name": "url", "type": "string", "description": "URL to match cooke domain and path." } | |
], | |
"description": "Deletes browser cookie with given name, domain and path.", | |
"hidden": true | |
}, | |
{ | |
"name": "getResourceTree", | |
"description": "Returns present frame / resource tree structure.", | |
"returns": [ | |
{ "name": "frameTree", "$ref": "FrameResourceTree", "description": "Present frame / resource tree structure." } | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "getResourceContent", | |
"description": "Returns content of the given resource.", | |
"parameters": [ | |
{ "name": "frameId", "$ref": "FrameId", "description": "Frame id to get resource for." }, | |
{ "name": "url", "type": "string", "description": "URL of the resource to get content for." } | |
], | |
"returns": [ | |
{ "name": "content", "type": "string", "description": "Resource content." }, | |
{ "name": "base64Encoded", "type": "boolean", "description": "True, if content was served as base64." } | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "searchInResource", | |
"description": "Searches for given string in resource content.", | |
"parameters": [ | |
{ "name": "frameId", "$ref": "FrameId", "description": "Frame id for resource to search in." }, | |
{ "name": "url", "type": "string", "description": "URL of the resource to search in." }, | |
{ "name": "query", "type": "string", "description": "String to search for." }, | |
{ "name": "caseSensitive", "type": "boolean", "optional": true, "description": "If true, search is case sensitive." }, | |
{ "name": "isRegex", "type": "boolean", "optional": true, "description": "If true, treats string parameter as regex." } | |
], | |
"returns": [ | |
{ "name": "result", "type": "array", "items": { "$ref": "SearchMatch" }, "description": "List of search matches." } | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "setDocumentContent", | |
"description": "Sets given markup as the document's HTML.", | |
"parameters": [ | |
{ "name": "frameId", "$ref": "FrameId", "description": "Frame id to set HTML for." }, | |
{ "name": "html", "type": "string", "description": "HTML content to set." } | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "setDeviceMetricsOverride", | |
"description": "Overrides the values of device screen dimensions (window.screen.width, window.screen.height, window.innerWidth, window.innerHeight, and \"device-width\"/\"device-height\"-related CSS media query results) and the font scale factor.", | |
"parameters": [ | |
{ "name": "width", "type": "integer", "description": "Overriding width value in pixels (minimum 0, maximum 10000000). 0 disables the override." }, | |
{ "name": "height", "type": "integer", "description": "Overriding height value in pixels (minimum 0, maximum 10000000). 0 disables the override." }, | |
{ "name": "deviceScaleFactor", "type": "number", "description": "Overriding device scale factor value (must be positive)." }, | |
{ "name": "fitWindow", "type": "boolean", "description": "Whether a view that exceeds the available browser window area should be scaled down to fit." }, | |
{ "name": "textAutosizing", "type": "boolean", "optional": true, "description": "Whether to override the text autosizing feature." } | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "setShowPaintRects", | |
"description": "Requests that backend shows paint rectangles", | |
"parameters": [ | |
{ "name": "result", "type": "boolean", "description": "True for showing paint rectangles" } | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "setShowDebugBorders", | |
"description": "Requests that backend shows debug borders on layers", | |
"parameters": [ | |
{ "name": "show", "type": "boolean", "description": "True for showing debug borders" } | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "setShowFPSCounter", | |
"description": "Requests that backend shows the FPS counter", | |
"parameters": [ | |
{ "name": "show", "type": "boolean", "description": "True for showing the FPS counter" } | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "setContinuousPaintingEnabled", | |
"description": "Requests that backend enables continuous painting", | |
"parameters": [ | |
{ "name": "enabled", "type": "boolean", "description": "True for enabling cointinuous painting" } | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "setShowScrollBottleneckRects", | |
"description": "Requests that backend shows scroll bottleneck rects", | |
"parameters": [ | |
{ "name": "show", "type": "boolean", "description": "True for showing scroll bottleneck rects" } | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "getScriptExecutionStatus", | |
"description": "Determines if scripts can be executed in the page.", | |
"returns": [ | |
{ "name": "result", "type": "string", "enum": ["allowed", "disabled", "forbidden"], "description": "Script execution status: \"allowed\" if scripts can be executed, \"disabled\" if script execution has been disabled through page settings, \"forbidden\" if script execution for the given page is not possible for other reasons." } | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "setScriptExecutionDisabled", | |
"description": "Switches script execution in the page.", | |
"parameters": [ | |
{ "name": "value", "type": "boolean", "description": "Whether script execution should be disabled in the page." } | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "setGeolocationOverride", | |
"description": "Overrides the Geolocation Position or Error.", | |
"parameters": [ | |
{ "name": "latitude", "type": "number", "optional": true, "description": "Mock longitude"}, | |
{ "name": "longitude", "type": "number", "optional": true, "description": "Mock latitude"}, | |
{ "name": "accuracy", "type": "number", "optional": true, "description": "Mock accuracy"} | |
] | |
}, | |
{ | |
"name": "clearGeolocationOverride", | |
"description": "Clears the overriden Geolocation Position and Error." | |
}, | |
{ | |
"name": "setDeviceOrientationOverride", | |
"description": "Overrides the Device Orientation.", | |
"parameters": [ | |
{ "name": "alpha", "type": "number", "description": "Mock alpha"}, | |
{ "name": "beta", "type": "number", "description": "Mock beta"}, | |
{ "name": "gamma", "type": "number", "description": "Mock gamma"} | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "clearDeviceOrientationOverride", | |
"description": "Clears the overridden Device Orientation.", | |
"hidden": true | |
}, | |
{ | |
"name": "setTouchEmulationEnabled", | |
"parameters": [ | |
{ "name": "enabled", "type": "boolean", "description": "Whether the touch event emulation should be enabled." } | |
], | |
"description": "Toggles mouse event-based touch event emulation.", | |
"hidden": true | |
}, | |
{ | |
"name": "setEmulatedMedia", | |
"parameters": [ | |
{ "name": "media", "type": "string", "description": "Media type to emulate. Empty string disables the override." } | |
], | |
"description": "Emulates the given media for CSS media queries.", | |
"hidden": true | |
}, | |
{ | |
"name": "captureScreenshot", | |
"description": "Capture page screenshot.", | |
"parameters": [ | |
{ "name": "format", "type": "string", "optional": true, "enum": ["jpeg", "png"], "description": "Image compression format." }, | |
{ "name": "quality", "type": "integer", "hidden": true, "optional": true, "description": "Compression quality from range [0..100]." }, | |
{ "name": "maxWidth", "type": "integer", "hidden": true, "optional": true, "description": "Maximum screenshot width." }, | |
{ "name": "maxHeight", "type": "integer", "hidden": true, "optional": true, "description": "Maximum screenshot height." } | |
], | |
"returns": [ | |
{ "name": "data", "type": "string", "description": "Base64-encoded image data (PNG)." }, | |
{ "name": "deviceScaleFactor", "type": "number", "hidden": true, "description": "Device scale factor." }, | |
{ "name": "pageScaleFactor", "type": "number", "hidden": true, "description": "Page scale factor." }, | |
{ "name": "viewport", "$ref": "DOM.Rect", "hidden": true, "description": "Viewport in CSS pixels." } | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "canScreencast", | |
"description": "Tells whether screencast is supported.", | |
"returns": [ | |
{ "name": "result", "type": "boolean", "description": "True if screencast is supported." } | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "startScreencast", | |
"description": "Starts sending each frame using the <code>screencastFrame</code> event.", | |
"parameters": [ | |
{ "name": "format", "type": "string", "optional": true, "enum": ["jpeg", "png"], "description": "Image compression format." }, | |
{ "name": "quality", "type": "integer", "optional": true, "description": "Compression quality from range [0..100]." }, | |
{ "name": "maxWidth", "type": "integer", "optional": true, "description": "Maximum screenshot width." }, | |
{ "name": "maxHeight", "type": "integer", "optional": true, "description": "Maximum screenshot height." } | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "stopScreencast", | |
"description": "Stops sending each frame in the <code>screencastFrame</code>.", | |
"hidden": true | |
}, | |
{ | |
"name": "handleJavaScriptDialog", | |
"description": "Accepts or dismisses a JavaScript initiated dialog (alert, confirm, prompt, or onbeforeunload).", | |
"parameters": [ | |
{ "name": "accept", "type": "boolean", "description": "Whether to accept or dismiss the dialog." }, | |
{ "name": "promptText", "type": "string", "optional": true, "description": "The text to enter into the dialog prompt before accepting. Used only if this is a prompt dialog." } | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "setShowViewportSizeOnResize", | |
"description": "Paints viewport size upon main frame resize.", | |
"parameters": [ | |
{ "name": "show", "type": "boolean", "description": "Whether to paint size or not." }, | |
{ "name": "showGrid", "type": "boolean", "optional": true, "description": "Whether to paint grid as well." } | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "setForceCompositingMode", | |
"description": "Force accelerated compositing mode for inspected page.", | |
"parameters": [ | |
{ "name": "force", "type": "boolean", "description": "Whether to force accelerated compositing or not." } | |
], | |
"hidden": true | |
} | |
], | |
"events": [ | |
{ | |
"name": "domContentEventFired", | |
"parameters": [ | |
{ "name": "timestamp", "type": "number" } | |
] | |
}, | |
{ | |
"name": "loadEventFired", | |
"parameters": [ | |
{ "name": "timestamp", "type": "number" } | |
] | |
}, | |
{ | |
"name": "frameAttached", | |
"description": "Fired when frame has been attached to its parent.", | |
"parameters": [ | |
{ "name": "frameId", "$ref": "FrameId", "description": "Id of the frame that has been attached." } | |
] | |
}, | |
{ | |
"name": "frameNavigated", | |
"description": "Fired once navigation of the frame has completed. Frame is now associated with the new loader.", | |
"parameters": [ | |
{ "name": "frame", "$ref": "Frame", "description": "Frame object." } | |
] | |
}, | |
{ | |
"name": "frameDetached", | |
"description": "Fired when frame has been detached from its parent.", | |
"parameters": [ | |
{ "name": "frameId", "$ref": "FrameId", "description": "Id of the frame that has been detached." } | |
] | |
}, | |
{ | |
"name": "frameStartedLoading", | |
"description": "Fired when frame has started loading.", | |
"parameters": [ | |
{ "name": "frameId", "$ref": "FrameId", "description": "Id of the frame that has started loading." } | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "frameStoppedLoading", | |
"description": "Fired when frame has stopped loading.", | |
"parameters": [ | |
{ "name": "frameId", "$ref": "FrameId", "description": "Id of the frame that has stopped loading." } | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "frameScheduledNavigation", | |
"description": "Fired when frame schedules a potential navigation.", | |
"parameters": [ | |
{ "name": "frameId", "$ref": "FrameId", "description": "Id of the frame that has scheduled a navigation." }, | |
{ "name": "delay", "type": "number", "description": "Delay (in seconds) until the navigation is scheduled to begin. The navigation is not guaranteed to start." } | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "frameClearedScheduledNavigation", | |
"description": "Fired when frame no longer has a scheduled navigation.", | |
"parameters": [ | |
{ "name": "frameId", "$ref": "FrameId", "description": "Id of the frame that has cleared its scheduled navigation." } | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "javascriptDialogOpening", | |
"description": "Fired when a JavaScript initiated dialog (alert, confirm, prompt, or onbeforeunload) is about to open.", | |
"parameters": [ | |
{ "name": "message", "type": "string", "description": "Message that will be displayed by the dialog." } | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "javascriptDialogClosed", | |
"description": "Fired when a JavaScript initiated dialog (alert, confirm, prompt, or onbeforeunload) has been closed.", | |
"hidden": true | |
}, | |
{ | |
"name": "scriptsEnabled", | |
"description": "Fired when the JavaScript is enabled/disabled on the page", | |
"parameters": [ | |
{ "name": "isEnabled", "type": "boolean", "description": "Whether script execution is enabled or disabled on the page." } | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "screencastFrame", | |
"description": "Compressed image data requested by the <code>startScreencast</code>.", | |
"parameters": [ | |
{ "name": "data", "type": "string", "description": "Base64-encoded compressed image." }, | |
{ "name": "deviceScaleFactor", "type": "number", "hidden": true, "optional": true, "description": "Device scale factor." }, | |
{ "name": "pageScaleFactor", "type": "number", "hidden": true, "optional": true, "description": "Page scale factor." }, | |
{ "name": "viewport", "$ref": "DOM.Rect", "hidden": true, "optional": true, "description": "Viewport in CSS pixels." }, | |
{ "name": "offsetTop", "type": "number", "hidden": true, "optional": true, "description": "Top offset in DIP." }, | |
{ "name": "offsetBottom", "type": "number", "hidden": true, "optional": true, "description": "Bottom offset in DIP." } | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "screencastVisibilityChanged", | |
"description": "Fired when the page with currently enabled screencast was shown or hidden </code>.", | |
"parameters": [ | |
{ "name": "visible", "type": "boolean", "description": "True if the page is visible." } | |
], | |
"hidden": true | |
} | |
] | |
}, | |
{ | |
"domain": "Runtime", | |
"description": "Runtime domain exposes JavaScript runtime by means of remote evaluation and mirror objects. Evaluation results are returned as mirror object that expose object type, string representation and unique identifier that can be used for further object reference. Original objects are maintained in memory unless they are either explicitly released or are released along with the other objects in their object group.", | |
"types": [ | |
{ | |
"id": "RemoteObjectId", | |
"type": "string", | |
"description": "Unique object identifier." | |
}, | |
{ | |
"id": "RemoteObject", | |
"type": "object", | |
"description": "Mirror object referencing original JavaScript object.", | |
"properties": [ | |
{ "name": "type", "type": "string", "enum": ["object", "function", "undefined", "string", "number", "boolean"], "description": "Object type." }, | |
{ "name": "subtype", "type": "string", "optional": true, "enum": ["array", "null", "node", "regexp", "date"], "description": "Object subtype hint. Specified for <code>object</code> type values only." }, | |
{ "name": "className", "type": "string", "optional": true, "description": "Object class (constructor) name. Specified for <code>object</code> type values only." }, | |
{ "name": "value", "type": "any", "optional": true, "description": "Remote object value (in case of primitive values or JSON values if it was requested)." }, | |
{ "name": "description", "type": "string", "optional": true, "description": "String representation of the object." }, | |
{ "name": "objectId", "$ref": "RemoteObjectId", "optional": true, "description": "Unique object identifier (for non-primitive values)." }, | |
{ "name": "preview", "$ref": "ObjectPreview", "optional": true, "description": "Preview containing abbreviated property values.", "hidden": true } | |
] | |
}, | |
{ | |
"id": "ObjectPreview", | |
"type": "object", | |
"hidden": true, | |
"description": "Object containing abbreviated remote object value.", | |
"properties": [ | |
{ "name": "lossless", "type": "boolean", "description": "Determines whether preview is lossless (contains all information of the original object)." }, | |
{ "name": "overflow", "type": "boolean", "description": "True iff some of the properties of the original did not fit." }, | |
{ "name": "properties", "type": "array", "items": { "$ref": "PropertyPreview" }, "description": "List of the properties." } | |
] | |
}, | |
{ | |
"id": "PropertyPreview", | |
"type": "object", | |
"hidden": true, | |
"properties": [ | |
{ "name": "name", "type": "string", "description": "Property name." }, | |
{ "name": "type", "type": "string", "enum": ["object", "function", "undefined", "string", "number", "boolean", "accessor"], "description": "Object type. Accessor means that the property itself is an accessor property." }, | |
{ "name": "value", "type": "string", "optional": true, "description": "User-friendly property value string." }, | |
{ "name": "valuePreview", "$ref": "ObjectPreview", "optional": true, "description": "Nested value preview." }, | |
{ "name": "subtype", "type": "string", "optional": true, "enum": ["array", "null", "node", "regexp", "date"], "description": "Object subtype hint. Specified for <code>object</code> type values only." } | |
] | |
}, | |
{ | |
"id": "PropertyDescriptor", | |
"type": "object", | |
"description": "Object property descriptor.", | |
"properties": [ | |
{ "name": "name", "type": "string", "description": "Property name." }, | |
{ "name": "value", "$ref": "RemoteObject", "optional": true, "description": "The value associated with the property." }, | |
{ "name": "writable", "type": "boolean", "optional": true, "description": "True if the value associated with the property may be changed (data descriptors only)." }, | |
{ "name": "get", "$ref": "RemoteObject", "optional": true, "description": "A function which serves as a getter for the property, or <code>undefined</code> if there is no getter (accessor descriptors only)." }, | |
{ "name": "set", "$ref": "RemoteObject", "optional": true, "description": "A function which serves as a setter for the property, or <code>undefined</code> if there is no setter (accessor descriptors only)." }, | |
{ "name": "configurable", "type": "boolean", "description": "True if the type of this property descriptor may be changed and if the property may be deleted from the corresponding object." }, | |
{ "name": "enumerable", "type": "boolean", "description": "True if this property shows up during enumeration of the properties on the corresponding object." }, | |
{ "name": "wasThrown", "type": "boolean", "optional": true, "description": "True if the result was thrown during the evaluation." }, | |
{ "name": "isOwn", "optional": true, "type": "boolean", "description": "True if the property is owned for the object.", "hidden": true } | |
] | |
}, | |
{ | |
"id": "InternalPropertyDescriptor", | |
"type": "object", | |
"description": "Object internal property descriptor. This property isn't normally visible in JavaScript code.", | |
"properties": [ | |
{ "name": "name", "type": "string", "description": "Conventional property name." }, | |
{ "name": "value", "$ref": "RemoteObject", "optional": true, "description": "The value associated with the property." } | |
], | |
"hidden": true | |
}, | |
{ | |
"id": "CallArgument", | |
"type": "object", | |
"description": "Represents function call argument. Either remote object id <code>objectId</code> or primitive <code>value</code> or neither of (for undefined) them should be specified.", | |
"properties": [ | |
{ "name": "value", "type": "any", "optional": true, "description": "Primitive value." }, | |
{ "name": "objectId", "$ref": "RemoteObjectId", "optional": true, "description": "Remote object handle." } | |
] | |
}, | |
{ | |
"id": "ExecutionContextId", | |
"type": "integer", | |
"description": "Id of an execution context." | |
}, | |
{ | |
"id": "ExecutionContextDescription", | |
"type": "object", | |
"description": "Description of an isolated world.", | |
"properties": [ | |
{ "name": "id", "$ref": "ExecutionContextId", "description": "Unique id of the execution context. It can be used to specify in which execution context script evaluation should be performed." }, | |
{ "name": "isPageContext", "type": "boolean", "description": "True if this is a context where inpspected web page scripts run. False if it is a content script isolated context.", "hidden": true }, | |
{ "name": "name", "type": "string", "description": "Human readable name describing given context.", "hidden": true}, | |
{ "name": "frameId", "$ref": "Page.FrameId", "description": "Id of the owning frame." } | |
] | |
} | |
], | |
"commands": [ | |
{ | |
"name": "evaluate", | |
"parameters": [ | |
{ "name": "expression", "type": "string", "description": "Expression to evaluate." }, | |
{ "name": "objectGroup", "type": "string", "optional": true, "description": "Symbolic group name that can be used to release multiple objects." }, | |
{ "name": "includeCommandLineAPI", "type": "boolean", "optional": true, "description": "Determines whether Command Line API should be available during the evaluation.", "hidden": true }, | |
{ "name": "doNotPauseOnExceptionsAndMuteConsole", "type": "boolean", "optional": true, "description": "Specifies whether evaluation should stop on exceptions and mute console. Overrides setPauseOnException state.", "hidden": true }, | |
{ "name": "contextId", "$ref": "Runtime.ExecutionContextId", "optional": true, "description": "Specifies in which isolated context to perform evaluation. Each content script lives in an isolated context and this parameter may be used to specify one of those contexts. If the parameter is omitted or 0 the evaluation will be performed in the context of the inspected page." }, | |
{ "name": "returnByValue", "type": "boolean", "optional": true, "description": "Whether the result is expected to be a JSON object that should be sent by value." }, | |
{ "name": "generatePreview", "type": "boolean", "optional": true, "hidden": true, "description": "Whether preview should be generated for the result." } | |
], | |
"returns": [ | |
{ "name": "result", "$ref": "RemoteObject", "description": "Evaluation result." }, | |
{ "name": "wasThrown", "type": "boolean", "optional": true, "description": "True if the result was thrown during the evaluation." } | |
], | |
"description": "Evaluates expression on global object." | |
}, | |
{ | |
"name": "callFunctionOn", | |
"parameters": [ | |
{ "name": "objectId", "$ref": "RemoteObjectId", "description": "Identifier of the object to call function on." }, | |
{ "name": "functionDeclaration", "type": "string", "description": "Declaration of the function to call." }, | |
{ "name": "arguments", "type": "array", "items": { "$ref": "CallArgument", "description": "Call argument." }, "optional": true, "description": "Call arguments. All call arguments must belong to the same JavaScript world as the target object." }, | |
{ "name": "doNotPauseOnExceptionsAndMuteConsole", "type": "boolean", "optional": true, "description": "Specifies whether function call should stop on exceptions and mute console. Overrides setPauseOnException state.", "hidden": true }, | |
{ "name": "returnByValue", "type": "boolean", "optional": true, "description": "Whether the result is expected to be a JSON object which should be sent by value." }, | |
{ "name": "generatePreview", "type": "boolean", "optional": true, "hidden": true, "description": "Whether preview should be generated for the result." } | |
], | |
"returns": [ | |
{ "name": "result", "$ref": "RemoteObject", "description": "Call result." }, | |
{ "name": "wasThrown", "type": "boolean", "optional": true, "description": "True if the result was thrown during the evaluation." } | |
], | |
"description": "Calls function with given declaration on the given object. Object group of the result is inherited from the target object." | |
}, | |
{ | |
"name": "getProperties", | |
"parameters": [ | |
{ "name": "objectId", "$ref": "RemoteObjectId", "description": "Identifier of the object to return properties for." }, | |
{ "name": "ownProperties", "optional": true, "type": "boolean", "description": "If true, returns properties belonging only to the element itself, not to its prototype chain." }, | |
{ "name": "accessorPropertiesOnly", "optional": true, "type": "boolean", "description": "If true, returns accessor properties (with getter/setter) only; internal properties are not returned either.", "hidden": true } | |
], | |
"returns": [ | |
{ "name": "result", "type": "array", "items": { "$ref": "PropertyDescriptor"}, "description": "Object properties." }, | |
{ "name": "internalProperties", "optional": true, "type": "array", "items": { "$ref": "InternalPropertyDescriptor"}, "description": "Internal object properties (only of the element itself).", "hidden": true } | |
], | |
"description": "Returns properties of a given object. Object group of the result is inherited from the target object." | |
}, | |
{ | |
"name": "releaseObject", | |
"parameters": [ | |
{ "name": "objectId", "$ref": "RemoteObjectId", "description": "Identifier of the object to release." } | |
], | |
"description": "Releases remote object with given id." | |
}, | |
{ | |
"name": "releaseObjectGroup", | |
"parameters": [ | |
{ "name": "objectGroup", "type": "string", "description": "Symbolic object group name." } | |
], | |
"description": "Releases all remote objects that belong to a given group." | |
}, | |
{ | |
"name": "run", | |
"hidden": true, | |
"description": "Tells inspected instance(worker or page) that it can run in case it was started paused." | |
}, | |
{ | |
"name": "enable", | |
"description": "Enables reporting of execution contexts creation by means of <code>executionContextCreated</code> event. When the reporting gets enabled the event will be sent immediately for each existing execution context." | |
}, | |
{ | |
"name": "disable", | |
"hidden": true, | |
"description": "Disables reporting of execution contexts creation." | |
} | |
], | |
"events": [ | |
{ | |
"name": "executionContextCreated", | |
"parameters": [ | |
{ "name": "context", "$ref": "ExecutionContextDescription", "description": "A newly created execution contex." } | |
], | |
"description": "Issued when new execution context is created." | |
} | |
] | |
}, | |
{ | |
"domain": "Console", | |
"description": "Console domain defines methods and events for interaction with the JavaScript console. Console collects messages created by means of the <a href='http://getfirebug.com/wiki/index.php/Console_API'>JavaScript Console API</a>. One needs to enable this domain using <code>enable</code> command in order to start receiving the console messages. Browser collects messages issued while console domain is not enabled as well and reports them using <code>messageAdded</code> notification upon enabling.", | |
"types": [ | |
{ | |
"id": "Timestamp", | |
"type": "number", | |
"description": "Number of seconds since epoch.", | |
"hidden": true | |
}, | |
{ | |
"id": "ConsoleMessage", | |
"type": "object", | |
"description": "Console message.", | |
"properties": [ | |
{ "name": "source", "type": "string", "enum": ["xml", "javascript", "network", "console-api", "storage", "appcache", "rendering", "css", "security", "other", "deprecation"], "description": "Message source." }, | |
{ "name": "level", "type": "string", "enum": ["log", "warning", "error", "debug", "info"], "description": "Message severity." }, | |
{ "name": "text", "type": "string", "description": "Message text." }, | |
{ "name": "type", "type": "string", "optional": true, "enum": ["log", "dir", "dirxml", "table", "trace", "clear", "startGroup", "startGroupCollapsed", "endGroup", "assert", "profile", "profileEnd"], "description": "Console message type." }, | |
{ "name": "url", "type": "string", "optional": true, "description": "URL of the message origin." }, | |
{ "name": "line", "type": "integer", "optional": true, "description": "Line number in the resource that generated this message." }, | |
{ "name": "column", "type": "integer", "optional": true, "description": "Column number in the resource that generated this message." }, | |
{ "name": "repeatCount", "type": "integer", "optional": true, "description": "Repeat count for repeated messages." }, | |
{ "name": "parameters", "type": "array", "items": { "$ref": "Runtime.RemoteObject" }, "optional": true, "description": "Message parameters in case of the formatted message." }, | |
{ "name": "stackTrace", "$ref": "StackTrace", "optional": true, "description": "JavaScript stack trace for assertions and error messages." }, | |
{ "name": "networkRequestId", "$ref": "Network.RequestId", "optional": true, "description": "Identifier of the network request associated with this message." }, | |
{ "name": "timestamp", "$ref": "Timestamp", "description": "Timestamp, when this message was fired.", "hidden": true } | |
] | |
}, | |
{ | |
"id": "CallFrame", | |
"type": "object", | |
"description": "Stack entry for console errors and assertions.", | |
"properties": [ | |
{ "name": "functionName", "type": "string", "description": "JavaScript function name." }, | |
{ "name": "scriptId", "type": "string", "description": "JavaScript script id." }, | |
{ "name": "url", "type": "string", "description": "JavaScript script name or url." }, | |
{ "name": "lineNumber", "type": "integer", "description": "JavaScript script line number." }, | |
{ "name": "columnNumber", "type": "integer", "description": "JavaScript script column number." } | |
] | |
}, | |
{ | |
"id": "StackTrace", | |
"type": "array", | |
"items": { "$ref": "CallFrame" }, | |
"description": "Call frames for assertions or error messages." | |
} | |
], | |
"commands": [ | |
{ | |
"name": "enable", | |
"description": "Enables console domain, sends the messages collected so far to the client by means of the <code>messageAdded</code> notification." | |
}, | |
{ | |
"name": "disable", | |
"description": "Disables console domain, prevents further console messages from being reported to the client." | |
}, | |
{ | |
"name": "clearMessages", | |
"description": "Clears console messages collected in the browser." | |
}, | |
{ | |
"name": "setMonitoringXHREnabled", | |
"parameters": [ | |
{ "name": "enabled", "type": "boolean", "description": "Monitoring enabled state." } | |
], | |
"description": "Toggles monitoring of XMLHttpRequest. If <code>true</code>, console will receive messages upon each XHR issued.", | |
"hidden": true | |
}, | |
{ | |
"name": "addInspectedNode", | |
"parameters": [ | |
{ "name": "nodeId", "$ref": "DOM.NodeId", "description": "DOM node id to be accessible by means of $x command line API." } | |
], | |
"description": "Enables console to refer to the node with given id via $x (see Command Line API for more details $x functions).", | |
"hidden": true | |
}, | |
{ | |
"name": "addInspectedHeapObject", | |
"parameters": [ | |
{ "name": "heapObjectId", "type": "integer" } | |
], | |
"hidden": true | |
} | |
], | |
"events": [ | |
{ | |
"name": "messageAdded", | |
"parameters": [ | |
{ "name": "message", "$ref": "ConsoleMessage", "description": "Console message that has been added." } | |
], | |
"description": "Issued when new console message is added." | |
}, | |
{ | |
"name": "messageRepeatCountUpdated", | |
"parameters": [ | |
{ "name": "count", "type": "integer", "description": "New repeat count value." }, | |
{ "name": "timestamp", "$ref": "Timestamp", "description": "Timestamp of most recent message in batch.", "hidden": true } | |
], | |
"description": "Issued when subsequent message(s) are equal to the previous one(s)." | |
}, | |
{ | |
"name": "messagesCleared", | |
"description": "Issued when console is cleared. This happens either upon <code>clearMessages</code> command or after page navigation." | |
} | |
] | |
}, | |
{ | |
"domain": "Network", | |
"description": "Network domain allows tracking network activities of the page. It exposes information about http, file, data and other requests and responses, their headers, bodies, timing, etc.", | |
"types": [ | |
{ | |
"id": "LoaderId", | |
"type": "string", | |
"description": "Unique loader identifier." | |
}, | |
{ | |
"id": "RequestId", | |
"type": "string", | |
"description": "Unique request identifier." | |
}, | |
{ | |
"id": "Timestamp", | |
"type": "number", | |
"description": "Number of seconds since epoch." | |
}, | |
{ | |
"id": "Headers", | |
"type": "object", | |
"description": "Request / response headers as keys / values of JSON object." | |
}, | |
{ | |
"id": "ResourceTiming", | |
"type": "object", | |
"description": "Timing information for the request.", | |
"properties": [ | |
{ "name": "requestTime", "type": "number", "description": "Timing's requestTime is a baseline in seconds, while the other numbers are ticks in milliseconds relatively to this requestTime." }, | |
{ "name": "proxyStart", "type": "number", "description": "Started resolving proxy." }, | |
{ "name": "proxyEnd", "type": "number", "description": "Finished resolving proxy." }, | |
{ "name": "dnsStart", "type": "number", "description": "Started DNS address resolve." }, | |
{ "name": "dnsEnd", "type": "number", "description": "Finished DNS address resolve." }, | |
{ "name": "connectStart", "type": "number", "description": "Started connecting to the remote host." }, | |
{ "name": "connectEnd", "type": "number", "description": "Connected to the remote host." }, | |
{ "name": "sslStart", "type": "number", "description": "Started SSL handshake." }, | |
{ "name": "sslEnd", "type": "number", "description": "Finished SSL handshake." }, | |
{ "name": "sendStart", "type": "number", "description": "Started sending request." }, | |
{ "name": "sendEnd", "type": "number", "description": "Finished sending request." }, | |
{ "name": "receiveHeadersEnd", "type": "number", "description": "Finished receiving response headers." } | |
] | |
}, | |
{ | |
"id": "Request", | |
"type": "object", | |
"description": "HTTP request data.", | |
"properties": [ | |
{ "name": "url", "type": "string", "description": "Request URL." }, | |
{ "name": "method", "type": "string", "description": "HTTP request method." }, | |
{ "name": "headers", "$ref": "Headers", "description": "HTTP request headers." }, | |
{ "name": "postData", "type": "string", "optional": true, "description": "HTTP POST request data." } | |
] | |
}, | |
{ | |
"id": "Response", | |
"type": "object", | |
"description": "HTTP response data.", | |
"properties": [ | |
{ "name": "url", "type": "string", "description": "Response URL. This URL can be different from CachedResource.url in case of redirect." }, | |
{ "name": "status", "type": "number", "description": "HTTP response status code." }, | |
{ "name": "statusText", "type": "string", "description": "HTTP response status text." }, | |
{ "name": "headers", "$ref": "Headers", "description": "HTTP response headers." }, | |
{ "name": "headersText", "type": "string", "optional": true, "description": "HTTP response headers text." }, | |
{ "name": "mimeType", "type": "string", "description": "Resource mimeType as determined by the browser." }, | |
{ "name": "requestHeaders", "$ref": "Headers", "optional": true, "description": "Refined HTTP request headers that were actually transmitted over the network." }, | |
{ "name": "requestHeadersText", "type": "string", "optional": true, "description": "HTTP request headers text." }, | |
{ "name": "connectionReused", "type": "boolean", "description": "Specifies whether physical connection was actually reused for this request." }, | |
{ "name": "connectionId", "type": "number", "description": "Physical connection id that was actually used for this request." }, | |
{ "name": "fromDiskCache", "type": "boolean", "optional": true, "description": "Specifies that the request was served from the disk cache." }, | |
{ "name": "timing", "$ref": "ResourceTiming", "optional": true, "description": "Timing information for the given request." } | |
] | |
}, | |
{ | |
"id": "WebSocketRequest", | |
"type": "object", | |
"description": "WebSocket request data.", | |
"hidden": true, | |
"properties": [ | |
{ "name": "headers", "$ref": "Headers", "description": "HTTP response headers." } | |
] | |
}, | |
{ | |
"id": "WebSocketResponse", | |
"type": "object", | |
"description": "WebSocket response data.", | |
"hidden": true, | |
"properties": [ | |
{ "name": "status", "type": "number", "description": "HTTP response status code." }, | |
{ "name": "statusText", "type": "string", "description": "HTTP response status text." }, | |
{ "name": "headers", "$ref": "Headers", "description": "HTTP response headers." } | |
] | |
}, | |
{ | |
"id": "WebSocketFrame", | |
"type": "object", | |
"description": "WebSocket frame data.", | |
"hidden": true, | |
"properties": [ | |
{ "name": "opcode", "type": "number", "description": "WebSocket frame opcode." }, | |
{ "name": "mask", "type": "boolean", "description": "WebSocke frame mask." }, | |
{ "name": "payloadData", "type": "string", "description": "WebSocke frame payload data." } | |
] | |
}, | |
{ | |
"id": "CachedResource", | |
"type": "object", | |
"description": "Information about the cached resource.", | |
"properties": [ | |
{ "name": "url", "type": "string", "description": "Resource URL. This is the url of the original network request." }, | |
{ "name": "type", "$ref": "Page.ResourceType", "description": "Type of this resource." }, | |
{ "name": "response", "$ref": "Response", "optional": true, "description": "Cached response data." }, | |
{ "name": "bodySize", "type": "number", "description": "Cached response body size." } | |
] | |
}, | |
{ | |
"id": "Initiator", | |
"type": "object", | |
"description": "Information about the request initiator.", | |
"properties": [ | |
{ "name": "type", "type": "string", "enum": ["parser", "script", "other"], "description": "Type of this initiator." }, | |
{ "name": "stackTrace", "$ref": "Console.StackTrace", "optional": true, "description": "Initiator JavaScript stack trace, set for Script only." }, | |
{ "name": "url", "type": "string", "optional": true, "description": "Initiator URL, set for Parser type only." }, | |
{ "name": "lineNumber", "type": "number", "optional": true, "description": "Initiator line number, set for Parser type only." } | |
] | |
} | |
], | |
"commands": [ | |
{ | |
"name": "enable", | |
"description": "Enables network tracking, network events will now be delivered to the client." | |
}, | |
{ | |
"name": "disable", | |
"description": "Disables network tracking, prevents network events from being sent to the client." | |
}, | |
{ | |
"name": "setUserAgentOverride", | |
"description": "Allows overriding user agent with the given string.", | |
"parameters": [ | |
{ "name": "userAgent", "type": "string", "description": "User agent to use." } | |
] | |
}, | |
{ | |
"name": "setExtraHTTPHeaders", | |
"description": "Specifies whether to always send extra HTTP headers with the requests from this page.", | |
"parameters": [ | |
{ "name": "headers", "$ref": "Headers", "description": "Map with extra HTTP headers." } | |
] | |
}, | |
{ | |
"name": "getResponseBody", | |
"description": "Returns content served for the given request.", | |
"parameters": [ | |
{ "name": "requestId", "$ref": "RequestId", "description": "Identifier of the network request to get content for." } | |
], | |
"returns": [ | |
{ "name": "body", "type": "string", "description": "Response body." }, | |
{ "name": "base64Encoded", "type": "boolean", "description": "True, if content was sent as base64." } | |
] | |
}, | |
{ | |
"name": "replayXHR", | |
"description": "This method sends a new XMLHttpRequest which is identical to the original one. The following parameters should be identical: method, url, async, request body, extra headers, withCredentials attribute, user, password.", | |
"parameters": [ | |
{ "name": "requestId", "$ref": "RequestId", "description": "Identifier of XHR to replay." } | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "canClearBrowserCache", | |
"description": "Tells whether clearing browser cache is supported.", | |
"returns": [ | |
{ "name": "result", "type": "boolean", "description": "True if browser cache can be cleared." } | |
] | |
}, | |
{ | |
"name": "clearBrowserCache", | |
"description": "Clears browser cache." | |
}, | |
{ | |
"name": "canClearBrowserCookies", | |
"description": "Tells whether clearing browser cookies is supported.", | |
"returns": [ | |
{ "name": "result", "type": "boolean", "description": "True if browser cookies can be cleared." } | |
] | |
}, | |
{ | |
"name": "clearBrowserCookies", | |
"description": "Clears browser cookies." | |
}, | |
{ | |
"name": "setCacheDisabled", | |
"parameters": [ | |
{ "name": "cacheDisabled", "type": "boolean", "description": "Cache disabled state." } | |
], | |
"description": "Toggles ignoring cache for each request. If <code>true</code>, cache will not be used." | |
}, | |
{ | |
"name": "loadResourceForFrontend", | |
"async": true, | |
"parameters": [ | |
{ "name": "frameId", "$ref": "Page.FrameId", "description": "Frame to load the resource from." }, | |
{ "name": "url", "type": "string", "description": "URL of the resource to load." }, | |
{ "name": "requestHeaders", "$ref": "Network.Headers", "optional": true, "description": "Request headers." } | |
], | |
"returns": [ | |
{ "name": "statusCode", "type": "number", "description": "HTTP status code." }, | |
{ "name": "responseHeaders", "$ref": "Network.Headers", "description": "Response headers." }, | |
{ "name": "content", "type": "string", "description": "Resource content." } | |
], | |
"description": "Loads a resource in the context of a frame on the inspected page without cross origin checks.", | |
"hidden": true | |
} | |
], | |
"events": [ | |
{ | |
"name": "requestWillBeSent", | |
"description": "Fired when page is about to send HTTP request.", | |
"parameters": [ | |
{ "name": "requestId", "$ref": "RequestId", "description": "Request identifier." }, | |
{ "name": "frameId", "$ref": "Page.FrameId", "description": "Frame identifier.", "hidden": true }, | |
{ "name": "loaderId", "$ref": "LoaderId", "description": "Loader identifier." }, | |
{ "name": "documentURL", "type": "string", "description": "URL of the document this request is loaded for." }, | |
{ "name": "request", "$ref": "Request", "description": "Request data." }, | |
{ "name": "timestamp", "$ref": "Timestamp", "description": "Timestamp." }, | |
{ "name": "initiator", "$ref": "Initiator", "description": "Request initiator." }, | |
{ "name": "redirectResponse", "optional": true, "$ref": "Response", "description": "Redirect response data." } | |
] | |
}, | |
{ | |
"name": "requestServedFromCache", | |
"description": "Fired if request ended up loading from cache.", | |
"parameters": [ | |
{ "name": "requestId", "$ref": "RequestId", "description": "Request identifier." } | |
] | |
}, | |
{ | |
"name": "responseReceived", | |
"description": "Fired when HTTP response is available.", | |
"parameters": [ | |
{ "name": "requestId", "$ref": "RequestId", "description": "Request identifier." }, | |
{ "name": "frameId", "$ref": "Page.FrameId", "description": "Frame identifier.", "hidden": true }, | |
{ "name": "loaderId", "$ref": "LoaderId", "description": "Loader identifier." }, | |
{ "name": "timestamp", "$ref": "Timestamp", "description": "Timestamp." }, | |
{ "name": "type", "$ref": "Page.ResourceType", "description": "Resource type." }, | |
{ "name": "response", "$ref": "Response", "description": "Response data." } | |
] | |
}, | |
{ | |
"name": "dataReceived", | |
"description": "Fired when data chunk was received over the network.", | |
"parameters": [ | |
{ "name": "requestId", "$ref": "RequestId", "description": "Request identifier." }, | |
{ "name": "timestamp", "$ref": "Timestamp", "description": "Timestamp." }, | |
{ "name": "dataLength", "type": "integer", "description": "Data chunk length." }, | |
{ "name": "encodedDataLength", "type": "integer", "description": "Actual bytes received (might be less than dataLength for compressed encodings)." } | |
] | |
}, | |
{ | |
"name": "loadingFinished", | |
"description": "Fired when HTTP request has finished loading.", | |
"parameters": [ | |
{ "name": "requestId", "$ref": "RequestId", "description": "Request identifier." }, | |
{ "name": "timestamp", "$ref": "Timestamp", "description": "Timestamp." } | |
] | |
}, | |
{ | |
"name": "loadingFailed", | |
"description": "Fired when HTTP request has failed to load.", | |
"parameters": [ | |
{ "name": "requestId", "$ref": "RequestId", "description": "Request identifier." }, | |
{ "name": "timestamp", "$ref": "Timestamp", "description": "Timestamp." }, | |
{ "name": "errorText", "type": "string", "description": "User friendly error message." }, | |
{ "name": "canceled", "type": "boolean", "optional": true, "description": "True if loading was canceled." } | |
] | |
}, | |
{ | |
"name": "webSocketWillSendHandshakeRequest", | |
"description": "Fired when WebSocket is about to initiate handshake.", | |
"parameters": [ | |
{ "name": "requestId", "$ref": "RequestId", "description": "Request identifier." }, | |
{ "name": "timestamp", "$ref": "Timestamp", "description": "Timestamp." }, | |
{ "name": "request", "$ref": "WebSocketRequest", "description": "WebSocket request data." } | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "webSocketHandshakeResponseReceived", | |
"description": "Fired when WebSocket handshake response becomes available.", | |
"parameters": [ | |
{ "name": "requestId", "$ref": "RequestId", "description": "Request identifier." }, | |
{ "name": "timestamp", "$ref": "Timestamp", "description": "Timestamp." }, | |
{ "name": "response", "$ref": "WebSocketResponse", "description": "WebSocket response data." } | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "webSocketCreated", | |
"description": "Fired upon WebSocket creation.", | |
"parameters": [ | |
{ "name": "requestId", "$ref": "RequestId", "description": "Request identifier." }, | |
{ "name": "url", "type": "string", "description": "WebSocket request URL." } | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "webSocketClosed", | |
"description": "Fired when WebSocket is closed.", | |
"parameters": [ | |
{ "name": "requestId", "$ref": "RequestId", "description": "Request identifier." }, | |
{ "name": "timestamp", "$ref": "Timestamp", "description": "Timestamp." } | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "webSocketFrameReceived", | |
"description": "Fired when WebSocket frame is received.", | |
"parameters": [ | |
{ "name": "requestId", "$ref": "RequestId", "description": "Request identifier." }, | |
{ "name": "timestamp", "$ref": "Timestamp", "description": "Timestamp." }, | |
{ "name": "response", "$ref": "WebSocketFrame", "description": "WebSocket response data." } | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "webSocketFrameError", | |
"description": "Fired when WebSocket frame error occurs.", | |
"parameters": [ | |
{ "name": "requestId", "$ref": "RequestId", "description": "Request identifier." }, | |
{ "name": "timestamp", "$ref": "Timestamp", "description": "Timestamp." }, | |
{ "name": "errorMessage", "type": "string", "description": "WebSocket frame error message." } | |
], | |
"hidden": true | |
}, | |
{ | |
"name": "webSocketFrameSent", | |
"description": "Fired when WebSocket frame is sent.", | |
"parameters": [ | |
{ "name": "requestId", "$ref": "RequestId", "description": "Request identifier." }, | |
{ "name": "timestamp", "$ref": "Timestamp", "description": "Timestamp." }, | |
{ "name": "response", "$ref": "WebSocketFrame", "description": "WebSocket response data." } | |
], | |
"hidden": true | |
} | |
] | |
}, | |
{ | |
"domain": "Database", | |
"hidden": true, | |
"types": [ | |
{ | |
"id": "DatabaseId", | |
"type": "string", | |
"description": "Unique identifier of Database object.", | |
"hidden": true | |
}, | |
{ | |
"id": "Database", | |
"type": "object", | |
"description": "Database object.", | |
"hidden": true, | |
"properties": [ | |
{ "name": "id", "$ref": "DatabaseId", "description": "Database ID." }, | |
{ "name": "domain", "type": "string", "description": "Database domain." }, | |
{ "name": "name", "type": "string", "description": "Database name." }, | |
{ "name": "version", "type": "string", "description": "Database version." } | |
] | |
}, | |
{ | |
"id": "Error", | |
"type": "object", | |
"description": "Database error.", | |
"properties": [ | |
{ "name": "message", "type": "string", "description": "Error message." }, | |
{ "name": "code", "type": "integer", "description": "Error code." } | |
] | |
} | |
], | |
"commands": [ | |
{ | |
"name": "enable", | |
"description": "Enables database tracking, database events will now be delivered to the client." | |
}, | |
{ | |
"name": "disable", | |
"description": "Disables database tracking, prevents database events from being sent to the client." | |
}, | |
{ | |
"name": "getDatabaseTableNames", | |
"parameters": [ | |
{ "name": "databaseId", "$ref": "DatabaseId" } | |
], | |
"returns": [ | |
{ "name": "tableNames", "type": "array", "items": { "type": "string" } } | |
] | |
}, | |
{ | |
"name": "executeSQL", | |
"async": true, | |
"parameters": [ | |
{ "name": "databaseId", "$ref": "DatabaseId" }, | |
{ "name": "query", "type": "string" } | |
], | |
"returns": [ | |
{ "name": "columnNames", "type": "array", "optional": true, "items": { "type": "string" } }, | |
{ "name": "values", "type": "array", "optional": true, "items": { "type": "any" }}, | |
{ "name": "sqlError", "$ref": "Error", "optional": true } | |
] | |
} | |
], | |
"events": [ | |
{ | |
"name": "addDatabase", | |
"parameters": [ | |
{ "name": "database", "$ref": "Database" } | |
] | |
} | |
] | |
}, | |
{ | |
"domain": "IndexedDB", | |
"hidden": true, | |
"types": [ | |
{ | |
"id": "DatabaseWithObjectStores", | |
"type": "object", | |
"description": "Database with an array of object stores.", | |
"properties": [ | |
{ "name": "name", "type": "string", "description": "Database name." }, | |
{ "name": "version", "type": "string", "description": "Deprecated string database version." }, | |
{ "name": "intVersion", "type": "integer", "description": "Integer database version." }, | |
{ "name": "objectStores", "type": "array", "items": { "$ref": "ObjectStore" }, "description": "Object stores in this database." } | |
] | |
}, | |
{ | |
"id": "ObjectStore", | |
"type": "object", | |
"description": "Object store.", | |
"properties": [ | |
{ "name": "name", "type": "string", "description": "Object store name." }, | |
{ "name": "keyPath", "$ref": "KeyPath", "description": "Object store key path." }, | |
{ "name": "autoIncrement", "type": "boolean", "description": "If true, object store has auto increment flag set." }, | |
{ "name": "indexes", "type": "array", "items": { "$ref": "ObjectStoreIndex" }, "description": "Indexes in this object store." } | |
] | |
}, | |
{ | |
"id": "ObjectStoreIndex", | |
"type": "object", | |
"description": "Object store index.", | |
"properties": [ | |
{ "name": "name", "type": "string", "description": "Index name." }, | |
{ "name": "keyPath", "$ref": "KeyPath", "description": "Index key path." }, | |
{ "name": "unique", "type": "boolean", "description": "If true, index is unique." }, | |
{ "name": "multiEntry", "type": "boolean", "description": "If true, index allows multiple entries for a key." } | |
] | |
}, | |
{ | |
"id": "Key", | |
"type": "object", | |
"description": "Key.", | |
"properties": [ | |
{ "name": "type", "type": "string", "enum": ["number", "string", "date", "array"], "description": "Key type." }, | |
{ "name": "number", "type": "number", "optional": true, "description": "Number value." }, | |
{ "name": "string", "type": "string", "optional": true, "description": "String value." }, | |
{ "name": "date", "type": "number", "optional": true, "description": "Date value." }, | |
{ "name": "array", "type": "array", "optional": true, "items": { "$ref": "Key" }, "description": "Array value." } | |
] | |
}, | |
{ | |
"id": "KeyRange", | |
"type": "object", | |
"description": "Key range.", | |
"properties": [ | |
{ "name": "lower", "$ref": "Key", "optional": true, "description": "Lower bound." }, | |
{ "name": "upper", "$ref": "Key", "optional": true, "description": "Upper bound." }, | |
{ "name": "lowerOpen", "type": "boolean", "description": "If true lower bound is open." }, | |
{ "name": "upperOpen", "type": "boolean", "description": "If true upper bound is open." } | |
] | |
}, | |
{ | |
"id": "DataEntry", | |
"type": "object", | |
"description": "Data entry.", | |
"properties": [ | |
{ "name": "key", "$ref": "Runtime.RemoteObject", "description": "Key." }, | |
{ "name": "primaryKey", "$ref": "Runtime.RemoteObject", "description": "Primary key." }, | |
{ "name": "value", "$ref": "Runtime.RemoteObject", "description": "Value." } | |
] | |
}, | |
{ | |
"id": "KeyPath", | |
"type": "object", | |
"description": "Key path.", | |
"properties": [ | |
{ "name": "type", "type": "string", "enum": ["null", "string", "array"], "description": "Key path type." }, | |
{ "name": "string", "type": "string", "optional": true, "description": "String value." }, | |
{ "name": "array", "type": "array", "optional": true, "items": { "type": "string" }, "description": "Array value." } | |
] | |
} | |
], | |
"commands": [ | |
{ | |
"name": "enable", | |
"description": "Enables events from backend." | |
}, | |
{ | |
"name": "disable", | |
"description": "Disables events from backend." | |
}, | |
{ | |
"name": "requestDatabaseNames", | |
"async": true, | |
"parameters": [ | |
{ "name": "securityOrigin", "type": "string", "description": "Security origin." } | |
], | |
"returns": [ | |
{ "name": "databaseNames", "type": "array", "items": { "type": "string" }, "description": "Database names for origin." } | |
], | |
"description": "Requests database names for given security origin." | |
}, | |
{ | |
"name": "requestDatabase", | |
"async": true, | |
"parameters": [ | |
{ "name": "securityOrigin", "type": "string", "description": "Security origin." }, | |
{ "name": "databaseName", "type": "string", "description": "Database name." } | |
], | |
"returns": [ | |
{ "name": "databaseWithObjectStores", "$ref": "DatabaseWithObjectStores", "description": "Database with an array of object stores." } | |
], | |
"description": "Requests database with given name in given frame." | |
}, | |
{ | |
"name": "requestData", | |
"async": true, | |
"parameters": [ | |
{ "name": "securityOrigin", "type": "string", "description": "Security origin." }, | |
{ "name": "databaseName", "type": "string", "description": "Database name." }, | |
{ "name": "objectStoreName", "type": "string", "description": "Object store name." }, | |
{ "name": "indexName", "type": "string", "description": "Index name, empty string for object store data requests." }, | |
{ "name": "skipCount", "type": "integer", "description": "Number of records to skip." }, | |
{ "name": "pageSize", "type": "integer", "description": "Number of records to fetch." }, | |
{ "name": "keyRange", "$ref": "KeyRange", "optional": true, "description": "Key range." } | |
], | |
"returns": [ | |
{ "name": "objectStoreDataEntries", "type": "array", "items": { "$ref": "DataEntry" }, "description": "Array of object store data entries." }, | |
{ "name": "hasMore", "type": "boolean", "description": "If true, there are more entries to fetch in the given range." } | |
], | |
"description": "Requests data from object store or index." | |
}, | |
{ | |
"name": "clearObjectStore", | |
"async": true, | |
"parameters": [ | |
{ "name": "securityOrigin", "type": "string", "description": "Security origin." }, | |
{ "name": "databaseName", "type": "string", "description": "Database name." }, | |
{ "name": "objectStoreName", "type": "string", "description": "Object store name." } | |
], | |
"returns": [ | |
], | |
"description": "Clears all entries from an object store." | |
} | |
] | |
}, | |
{ | |
"domain": "DOMStorage", | |
"hidden": true, | |
"description": "Query and modify DOM storage.", | |
"types": [ | |
{ | |
"id": "StorageId", | |
"type": "object", | |
"description": "DOM Storage identifier.", | |
"hidden": true, | |
"properties": [ | |
{ "name": "securityOrigin", "type": "string", "description": "Security origin for the storage." }, | |
{ "name": "isLocalStorage", "type": "boolean", "description": "Whether the storage is local storage (not session storage)." } | |
] | |
}, | |
{ | |
"id": "Item", | |
"type": "array", | |
"description": "DOM Storage item.", | |
"hidden": true, | |
"items": { "type": "string" } | |
} | |
], | |
"commands": [ | |
{ | |
"name": "enable", | |
"description": "Enables storage tracking, storage events will now be delivered to the client." | |
}, | |
{ | |
"name": "disable", | |
"description": "Disables storage tracking, prevents storage events from being sent to the client." | |
}, | |
{ | |
"name": "getDOMStorageItems", | |
"parameters": [ | |
{ "name": "storageId", "$ref": "StorageId" } | |
], | |
"returns": [ | |
{ "name": "entries", "type": "array", "items": { "$ref": "Item" } } | |
] | |
}, | |
{ | |
"name": "setDOMStorageItem", | |
"parameters": [ | |
{ "name": "storageId", "$ref": "StorageId" }, | |
{ "name": "key", "type": "string" }, | |
{ "name": "value", "type": "string" } | |
] | |
}, | |
{ | |
"name": "removeDOMStorageItem", | |
"parameters": [ | |
{ "name": "storageId", "$ref": "StorageId" }, | |
{ "name": "key", "type": "string" } | |
] | |
} | |
], | |
"events": [ | |
{ | |
"name": "domStorageItemsCleared", | |
"parameters": [ | |
{ "name": "storageId", "$ref": "StorageId" } | |
] | |
}, | |
{ | |
"name": "domStorageItemRemoved", | |
"parameters": [ | |
{ "name": "storageId", "$ref": "StorageId" }, | |
{ "name": "key", "type": "string" } | |
] | |
}, | |
{ | |
"name": "domStorageItemAdded", | |
"parameters": [ | |
{ "name": "storageId", "$ref": "StorageId" }, | |
{ "name": "key", "type": "string" }, | |
{ "name": "newValue", "type": "string" } | |
] | |
}, | |
{ | |
"name": "domStorageItemUpdated", | |
"parameters": [ | |
{ "name": "storageId", "$ref": "StorageId" }, | |
{ "name": "key", "type": "string" }, | |
{ "name": "oldValue", "type": "string" }, | |
{ "name": "newValue", "type": "string" } | |
] | |
} | |
] | |
}, | |
{ | |
"domain": "ApplicationCache", | |
"hidden": true, | |
"types": [ | |
{ | |
"id": "ApplicationCacheResource", | |
"type": "object", | |
"description": "Detailed application cache resource information.", | |
"properties": [ | |
{ "name": "url", "type": "string", "description": "Resource url." }, | |
{ "name": "size", "type": "integer", "description": "Resource size." }, | |
{ "name": "type", "type": "string", "description": "Resource type." } | |
] | |
}, | |
{ | |
"id": "ApplicationCache", | |
"type": "object", | |
"description": "Detailed application cache information.", | |
"properties": [ | |
{ "name": "manifestURL", "type": "string", "description": "Manifest URL." }, | |
{ "name": "size", "type": "number", "description": "Application cache size." }, | |
{ "name": "creationTime", "type": "number", "description": "Application cache creation time." }, | |
{ "name": "updateTime", "type": "number", "description": "Application cache update time." }, | |
{ "name": "resources", "type": "array", "items": { "$ref": "ApplicationCacheResource" }, "description": "Application cache resources." } | |
] | |
}, | |
{ | |
"id": "FrameWithManifest", | |
"type": "object", | |
"description": "Frame identifier - manifest URL pair.", | |
"properties": [ | |
{ "name": "frameId", "$ref": "Page.FrameId", "description": "Frame identifier." }, | |
{ "name": "manifestURL", "type": "string", "description": "Manifest URL." }, | |
{ "name": "status", "type": "integer", "description": "Application cache status." } | |
] | |
} | |
], | |
"commands": [ | |
{ | |
"name": "getFramesWithManifests", | |
"returns": [ | |
{ "name": "frameIds", "type": "array", "items": { "$ref": "FrameWithManifest" }, "description": "Array of frame identifiers with manifest urls for each frame containing a document associated with some application cache." } | |
], | |
"description": "Returns array of frame identifiers with manifest urls for each frame containing a document associated with some application cache." | |
}, | |
{ | |
"name": "enable", | |
"description": "Enables application cache domain notifications." | |
}, | |
{ | |
"name": "getManifestForFrame", | |
"parameters": [ | |
{ "name": "frameId", "$ref": "Page.FrameId", "description": "Identifier of the frame containing document whose manifest is retrieved." } | |
], | |
"returns": [ | |
{ "name": "manifestURL", "type": "string", "description": "Manifest URL for document in the given frame." } | |
], | |
"description": "Returns manifest URL for document in the given frame." | |
}, | |
{ | |
"name": "getApplicationCacheForFrame", | |
"parameters": [ | |
{ "name": "frameId", "$ref": "Page.FrameId", "description": "Identifier of the frame containing document whose application cache is retrieved." } | |
], | |
"returns": [ | |
{ "name": "applicationCache", "$ref": "ApplicationCache", "description": "Relevant application cache data for the document in given frame." } | |
], | |
"description": "Returns relevant application cache data for the document in given frame." | |
} | |
], | |
"events": [ | |
{ | |
"name": "applicationCacheStatusUpdated", | |
"parameters": [ | |
{ "name": "frameId", "$ref": "Page.FrameId", "description": "Identifier of the frame containing document whose application cache updated status." }, | |
{ "name": "manifestURL", "type": "string", "description": "Manifest URL." }, | |
{ "name": "status", "type": "integer", "description": "Updated application cache status." } | |
] | |
}, | |
{ | |
"name": "networkStateUpdated", | |
"parameters": [ | |
{ "name": "isNowOnline", "type": "boolean" } | |
] | |
} | |
] | |
}, | |
{ | |
"domain": "FileSystem", | |
"hidden": true, | |
"types": [ | |
{ | |
"id": "Entry", | |
"type": "object", | |
"properties": [ | |
{ "name": "url", "type": "string", "description": "filesystem: URL for the entry." }, | |
{ "name": "name", "type": "string", "description": "The name of the file or directory." }, | |
{ "name": "isDirectory", "type": "boolean", "description": "True if the entry is a directory." }, | |
{ "name": "mimeType", "type": "string", "optional": true, "description": "MIME type of the entry, available for a file only." }, | |
{ "name": "resourceType", "$ref": "Page.ResourceType", "optional": true, "description": "ResourceType of the entry, available for a file only." }, | |
{ "name": "isTextFile", "type": "boolean", "optional": true, "description": "True if the entry is a text file." } | |
], | |
"description": "Represents a browser side file or directory." | |
}, | |
{ | |
"id": "Metadata", | |
"type": "object", | |
"properties": [ | |
{ "name": "modificationTime", "type": "number", "description": "Modification time." }, | |
{ "name": "size", "type": "number", "description": "File size. This field is always zero for directories." } | |
], | |
"description": "Represents metadata of a file or entry." | |
} | |
], | |
"commands": [ | |
{ | |
"name": "enable", | |
"description": "Enables events from backend." | |
}, | |
{ | |
"name": "disable", | |
"description": "Disables events from backend." | |
}, | |
{ | |
"name": "requestFileSystemRoot", | |
"async": true, | |
"parameters": [ | |
{ "name": "origin", "type": "string", "description": "Security origin of requesting FileSystem. One of frames in current page needs to have this security origin." }, | |
{ "name": "type", "type": "string", "enum": ["temporary", "persistent"], "description": "FileSystem type of requesting FileSystem." } | |
], | |
"returns": [ | |
{ "name": "errorCode", "type": "integer", "description": "0, if no error. Otherwise, errorCode is set to FileError::ErrorCode value." }, | |
{ "name": "root", "$ref": "Entry", "optional": true, "description": "Contains root of the requested FileSystem if the command completed successfully." } | |
], | |
"description": "Returns root directory of the FileSystem, if exists." | |
}, | |
{ | |
"name": "requestDirectoryContent", | |
"async": true, | |
"parameters": [ | |
{ "name": "url", "type": "string", "description": "URL of the directory that the frontend is requesting to read from." } | |
], | |
"returns": [ | |
{ "name": "errorCode", "type": "integer", "description": "0, if no error. Otherwise, errorCode is set to FileError::ErrorCode value." }, | |
{ "name": "entries", "type": "array", "items": { "$ref": "Entry" }, "optional": true, "description": "Contains all entries on directory if the command completed successfully." } | |
], | |
"description": "Returns content of the directory." | |
}, | |
{ | |
"name": "requestMetadata", | |
"async": true, | |
"parameters": [ | |
{ "name": "url", "type": "string", "description": "URL of the entry that the frontend is requesting to get metadata from." } | |
], | |
"returns": [ | |
{ "name": "errorCode", "type": "integer", "description": "0, if no error. Otherwise, errorCode is set to FileError::ErrorCode value." }, | |
{ "name": "metadata", "$ref": "Metadata", "optional": true, "description": "Contains metadata of the entry if the command completed successfully." } | |
], | |
"description": "Returns metadata of the entry." | |
}, | |
{ | |
"name": "requestFileContent", | |
"async": true, | |
"parameters": [ | |
{ "name": "url", "type": "string", "description": "URL of the file that the frontend is requesting to read from." }, | |
{ "name": "readAsText", "type": "boolean", "description": "True if the content should be read as text, otherwise the result will be returned as base64 encoded text." }, | |
{ "name": "start", "type": "integer", "optional": true, "description": "Specifies the start of range to read." }, | |
{ "name": "end", "type": "integer", "optional": true, "description": "Specifies the end of range to read exclusively." }, | |
{ "name": "charset", "type": "string", "optional": true, "description": "Overrides charset of the content when content is served as text." } | |
], | |
"returns": [ | |
{ "name": "errorCode", "type": "integer", "description": "0, if no error. Otherwise, errorCode is set to FileError::ErrorCode value." }, | |
{ "name": "content", "type": "string", "optional": true, "description": "Content of the file." }, | |
{ "name": "charset", "type": "string", "optional": true, "description": "Charset of the content if it is served as text." } | |
], | |
"description": "Returns content of the file. Result should be sliced into [start, end)." | |
}, | |
{ | |
"name": "deleteEntry", | |
"async": true, | |
"parameters": [ | |
{ "name": "url", "type": "string", "description": "URL of the entry to delete." } | |
], | |
"returns": [ | |
{ "name": "errorCode", "type": "integer", "description": "0, if no error. Otherwise errorCode is set to FileError::ErrorCode value." } | |
], | |
"description": "Deletes specified entry. If the entry is a directory, the agent deletes children recursively." | |
} | |
] | |
}, | |
{ | |
"domain": "DOM", | |
"description": "This domain exposes DOM read/write operations. Each DOM Node is represented with its mirror object that has an <code>id</code>. This <code>id</code> can be used to get additional information on the Node, resolve it into the JavaScript object wrapper, etc. It is important that client receives DOM events only for the nodes that are known to the client. Backend keeps track of the nodes that were sent to the client and never sends the same node twice. It is client's responsibility to collect information about the nodes that were sent to the client.<p>Note that <code>iframe</code> owner elements will return corresponding document elements as their child nodes.</p>", | |
"types": [ | |
{ | |
"id": "NodeId", | |
"type": "integer", | |
"description": "Unique DOM node identifier." | |
}, | |
{ | |
"id": "BackendNodeId", | |
"type": "integer", | |
"description": "Unique DOM node identifier used to reference a node that may not have been pushed to the front-end.", | |
"hidden": true | |
}, | |
{ | |
"id": "PseudoType", | |
"type": "string", | |
"enum": ["before", "after"], | |
"description": "Pseudo element type." | |
}, | |
{ | |
"id": "Node", | |
"type": "object", | |
"properties": [ | |
{ "name": "nodeId", "$ref": "NodeId", "description": "Node identifier that is passed into the rest of the DOM messages as the <code>nodeId</code>. Backend will only push node with given <code>id</code> once. It is aware of all requested nodes and will only fire DOM events for nodes known to the client." }, | |
{ "name": "nodeType", "type": "integer", "description": "<code>Node</code>'s nodeType." }, | |
{ "name": "nodeName", "type": "string", "description": "<code>Node</code>'s nodeName." }, | |
{ "name": "localName", "type": "string", "description": "<code>Node</code>'s localName." }, | |
{ "name": "nodeValue", "type": "string", "description": "<code>Node</code>'s nodeValue." }, | |
{ "name": "childNodeCount", "type": "integer", "optional": true, "description": "Child count for <code>Container</code> nodes." }, | |
{ "name": "children", "type": "array", "optional": true, "items": { "$ref": "Node" }, "description": "Child nodes of this node when requested with children." }, | |
{ "name": "attributes", "type": "array", "optional": true, "items": { "type": "string" }, "description": "Attributes of the <code>Element</code> node in the form of flat array <code>[name1, value1, name2, value2]</code>." }, | |
{ "name": "documentURL", "type": "string", "optional": true, "description": "Document URL that <code>Document</code> or <code>FrameOwner</code> node points to." }, | |
{ "name": "baseURL", "type": "string", "optional": true, "description": "Base URL that <code>Document</code> or <code>FrameOwner</code> node uses for URL completion.", "hidden": true }, | |
{ "name": "publicId", "type": "string", "optional": true, "description": "<code>DocumentType</code>'s publicId." }, | |
{ "name": "systemId", "type": "string", "optional": true, "description": "<code>DocumentType</code>'s systemId." }, | |
{ "name": "internalSubset", "type": "string", "optional": true, "description": "<code>DocumentType</code>'s internalSubset." }, | |
{ "name": "xmlVersion", "type": "string", "optional": true, "description": "<code>Document</code>'s XML version in case of XML documents." }, | |
{ "name": "name", "type": "string", "optional": true, "description": "<code>Attr</code>'s name." }, | |
{ "name": "value", "type": "string", "optional": true, "description": "<code>Attr</code>'s value." }, | |
{ "name": "pseudoType", "$ref": "PseudoType", "optional": true, "description": "Pseudo element type for this node." }, | |
{ "name": "frameId", "$ref": "Page.FrameId", "optional": true, "description": "Frame ID for frame owner elements.", "hidden": true }, | |
{ "name": "contentDocument", "$ref": "Node", "optional": true, "description": "Content document for frame owner elements." }, | |
{ "name": "shadowRoots", "type": "array", "optional": true, "items": { "$ref": "Node" }, "description": "Shadow root list for given element host.", "hidden": true }, | |
{ "name": "templateContent", "$ref": "Node", "optional": true, "description": "Content document fragment for template elements.", "hidden": true }, | |
{ "name": "pseudoElements", "type": "array", "items": { "$ref": "Node" }, "optional": true, "description": "Pseudo elements associated with this node.", "hidden": true } | |
], | |
"description": "DOM interaction is implemented in terms of mirror objects that represent the actual DOM nodes. DOMNode is a base node mirror type." | |
}, | |
{ | |
"id": "EventListener", | |
"type": "object", | |
"hidden": true, | |
"properties": [ | |
{ "name": "type", "type": "string", "description": "<code>EventListener</code>'s type." }, | |
{ "name": "useCapture", "type": "boolean", "description": "<code>EventListener</code>'s useCapture." }, | |
{ "name": "isAttribute", "type": "boolean", "description": "<code>EventListener</code>'s isAttribute." }, | |
{ "name": "nodeId", "$ref": "NodeId", "description": "Target <code>DOMNode</code> id." }, | |
{ "name": "handlerBody", "type": "string", "description": "Event handler function body." }, | |
{ "name": "location", "$ref": "Debugger.Location", "optional": true, "description": "Handler code location." }, | |
{ "name": "sourceName", "type": "string", "optional": true, "description": "Source script URL." }, | |
{ "name": "handler", "$ref": "Runtime.RemoteObject", "optional": true, "description": "Event handler function value." } | |
], | |
"description": "DOM interaction is implemented in terms of mirror objects that represent the actual DOM nodes. DOMNode is a base node mirror type." | |
}, | |
{ | |
"id": "RGBA", | |
"type": "object", | |
"properties": [ | |
{ "name": "r", "type": "integer", "description": "The red component, in the [0-255] range." }, | |
{ "name": "g", "type": "integer", "description": "The green component, in the [0-255] range." }, | |
{ "name": "b", "type": "integer", "description": "The blue component, in the [0-255] range." }, | |
{ "name": "a", "type": "number", "optional": true, "description": "The alpha component, in the [0-1] range (default: 1)." } | |
], | |
"description": "A structure holding an RGBA color." | |
}, | |
{ | |
"id": "Quad", | |
"type": "array", | |
"items": { "type": "number" }, | |
"minItems": 8, | |
"maxItems": 8, | |
"description": "An array of quad vertices, x immediately followed by y for each point, points clock-wise.", | |
"hidden": true | |
}, | |
{ | |
"id": "BoxModel", | |
"type": "object", | |
"hidden": true, | |
"properties": [ | |
{ "name": "content", "$ref": "Quad", "description": "Content box" }, | |
{ "name": "padding", "$ref": "Quad", "description": "Padding box" }, | |
{ "name": "border", "$ref": "Quad", "description": "Border box" }, | |
{ "name": "margin", "$ref": "Quad", "description": "Margin box" }, | |
{ "name": "width", "type": "integer", "description": "Node width" }, | |
{ "name": "height", "type": "integer", "description": "Node height" } | |
], | |
"description": "Box model." | |
}, | |
{ | |
"id": "Rect", | |
"type": "object", | |
"hidden": true, | |
"properties": [ | |
{ "name": "x", "type": "number", "description": "X coordinate" }, | |
{ "name": "y", "type": "number", "description": "Y coordinate" }, | |
{ "name": "width", "type": "number", "description": "Rectangle width" }, | |
{ "name": "height", "type": "number", "description": "Rectangle height" } | |
], | |
"description": "Rectangle." | |
}, | |
{ | |
"id": "HighlightConfig", | |
"type": "object", | |
"properties": [ | |
{ "name": "showInfo", "type": "boolean", "optional": true, "description": "Whether the node info tooltip should be shown (default: false)." }, | |
{ "name": "contentColor", "$ref": "RGBA", "optional": true, "description": "The content box highlight fill color (default: transparent)." }, | |
{ "name": "paddingColor", "$ref": "RGBA", "optional": true, "description": "The padding highlight fill color (default: transparent)." }, | |
{ "name": "borderColor", "$ref": "RGBA", "optional": true, "description": "The border highlight fill color (default: transparent)." }, | |
{ "name": "marginColor", "$ref": "RGBA", "optional": true, "description": "The margin highlight fill color (default: transparent)." }, | |
{ "name": "eventTargetColor", "$ref": "RGBA", "optional": true, "hidden": true, "description": "The event target element highlight fill color (default: transparent)." } | |
], | |
"description": "Configuration data for the highlighting of page elements." | |
} | |
], | |
"commands": [ | |
{ | |
"name": "getDocument", | |
"returns": [ | |
{ "name": "root", "$ref": "Node", "description": "Resulting node." } | |
], | |
"description": "Returns the root DOM node to the caller." | |
}, | |
{ | |
"name": "requestChildNodes", | |
"parameters": [ | |
{ "name": "nodeId", "$ref": "NodeId", "description": "Id of the node to get children for." }, | |
{ "name": "depth", "type": "integer", "optional": true, "description": "The maximum depth at which children should be retrieved, defaults to 1. Use -1 for the entire subtree or provide an integer larger than 0.", "hidden": true } | |
], | |
"description": "Requests that children of the node with given id are returned to the caller in form of <code>setChildNodes</code> events where not only immediate children are retrieved, but all children down to the specified depth." | |
}, | |
{ | |
"name": "querySelector", | |
"parameters": [ | |
{ "name": "nodeId", "$ref": "NodeId", "description": "Id of the node to query upon." }, | |
{ "name": "selector", "type": "string", "description": "Selector string." } | |
], | |
"returns": [ | |
{ "name": "nodeId", "$ref": "NodeId", "description": "Query selector result." } | |
], | |
"description": "Executes <code>querySelector</code> on a given node." | |
}, | |
{ | |
"name": "querySelectorAll", | |
"parameters": [ | |
{ "name": "nodeId", "$ref": "NodeId", "description": "Id of the node to query upon." }, | |
{ "name": "selector", "type": "string", "description": "Selector string." } | |
], | |
"returns": [ | |
{ "name": "nodeIds", "type": "array", "items": { "$ref": "NodeId" }, "description": "Query selector result." } | |
], | |
"description": "Executes <code>querySelectorAll</code> on a given node." | |
}, | |
{ | |
"name": "setNodeName", | |
"parameters": [ | |
{ "name": "nodeId", "$ref": "NodeId", "description": "Id of the node to set name for." }, | |
{ "name": "name", "type": "string", "description": "New node's name." } | |
], | |
"returns": [ | |
{ "name": "nodeId", "$ref": "NodeId", "description": "New node's id." } | |
], | |
"description": "Sets node name for a node with given id." | |
}, | |
{ | |
"name": "setNodeValue", | |
"parameters": [ | |
{ "name": "nodeId", "$ref": "NodeId", "description": "Id of the node to set value for." }, | |
{ "name": "value", "type": "string", "description": "New node's value." } | |
], | |
"description": "Sets node value for a node with given id." | |
}, | |
{ | |
"name": "removeNode", | |
"parameters": [ | |
{ "name": "nodeId", "$ref": "NodeId", "description": "Id of the node to remove." } | |
], | |
"description": "Removes node with given id." | |
}, | |
{ | |
"name": "setAttributeValue", | |
"parameters": [ | |
{ "name": "nodeId", "$ref": "NodeId", "description": "Id of the element to set attribute for." }, | |
{ "name": "name", "type": "string", "description": "Attribute name." }, | |
{ "name": "value", "type": "string", "description": "Attribute value." } | |
], | |
"description": "Sets attribute for an element with given id." | |
}, | |
{ | |
"name": "setAttributesAsText", | |
"parameters": [ | |
{ "name": "nodeId", "$ref": "NodeId", "description": "Id of the element to set attributes for." }, | |
{ "name": "text", "type": "string", "description": "Text with a number of attributes. Will parse this text using HTML parser." }, | |
{ "name": "name", "type": "string", "optional": true, "description": "Attribute name to replace with new attributes derived from text in case text parsed successfully." } | |
], | |
"description": "Sets attributes on element with given id. This method is useful when user edits some existing attribute value and types in several attribute name/value pairs." | |
}, | |
{ | |
"name": "removeAttribute", | |
"parameters": [ | |
{ "name": "nodeId", "$ref": "NodeId", "description": "Id of the element to remove attribute from." }, | |
{ "name": "name", "type": "string", "description": "Name of the attribute to remove." } | |
], | |
"description": "Removes attribute with given name from an element with given id." | |
}, | |
{ | |
"name": "getEventListenersForNode", | |
"parameters": [ | |
{ "name": "nodeId", "$ref": "NodeId", "description": "Id of the node to get listeners for." }, | |
{ "name": "objectGroup", "type": "string", "optional": true, "description": "Symbolic group name for handler value. Handler value is not returned without this parameter specified." } | |
], | |
"returns": [ | |
{ "name": "listeners", "type": "array", "items": { "$ref": "EventListener"}, "description": "Array of relevant listeners." } | |
], | |
"description": "Returns event listeners relevant to the node.", | |
"hidden": true | |
}, | |
{ | |
"name": "getOuterHTML", | |
"parameters": [ | |
{ "name": "nodeId", "$ref": "NodeId", "description": "Id of the node to get markup for." } | |
], | |
"returns": [ | |
{ "name": "outerHTML", "type": "string", "description": "Outer HTML markup." } | |
], | |
"description": "Returns node's HTML markup." | |
}, | |
{ | |
"name": "setOuterHTML", | |
"parameters": [ | |
{ "name": "nodeId", "$ref": "NodeId", "description": "Id of the node to set markup for." }, | |
{ "name": "outerHTML", "type": "string", "description": "Outer HTML markup to set." } | |
], | |
"description": "Sets node HTML markup, returns new node id." | |
}, | |
{ | |
"name": "performSearch", | |
"parameters": [ | |
{ "name": "query", "type": "string", "description": "Plain text or query selector or XPath search query." } | |
], | |
"returns": [ | |
{ "name": "searchId", "type": "string", "description": "Unique search session identifier." }, | |
{ "name": "resultCount", "type": "integer", "description": "Number of search results." } | |
], | |
"description": "Searches for a given string in the DOM tree. Use <code>getSearchResults</code> to access search results or <code>cancelSearch</code> to end this search session.", | |
"hidden": true | |
}, | |
{ | |
"name": "getSearchResults", | |
"parameters": [ | |
{ "name": "searchId", "type": "string", "description": "Unique search session identifier." }, | |
{ "name": "fromIndex", "type": "integer", "description": "Start index of the search result to be returned." }, | |
{ "name": "toIndex", "type": "integer", "description": "End index of the search result to be returned." } | |
], | |
"returns": [ | |
{ "name": "nodeIds", "type": "array", "items": { "$ref": "NodeId" }, "description": "Ids of the search result nodes." } | |
], | |
"description": "Returns search results from given <code>fromIndex</code> to given <code>toIndex</code> from the sarch with the given identifier.", | |
"hidden": true | |
}, | |
{ | |
"name": "discardSearchResults", | |
"parameters": [ | |
{ "name": "searchId", "type": "string", "description": "Unique search session identifier." } | |
], | |
"description": "Discards search results from the session with the given id. <code>getSearchResults</code> should no longer be called for that search.", | |
"hidden": true | |
}, | |
{ | |
"name": "requestNode", | |
"parameters": [ | |
{ "name": "objectId", "$ref": "Runtime.RemoteObjectId", "description": "JavaScript object id to convert into node." } | |
], | |
"returns": [ | |
{ "name": "nodeId", "$ref": "NodeId", "description": "Node id for given object." } | |
], | |
"description": "Requests that the node is sent to the caller given the JavaScript node object reference. All nodes that form the path from the node to the root are also sent to the client as a series of <code>setChildNodes</code> notifications." | |
}, | |
{ | |
"name": "setInspectModeEnabled", | |
"hidden": true, | |
"parameters": [ | |
{ "name": "enabled", "type": "boolean", "description": "True to enable inspection mode, false to disable it." }, | |
{ "name": "inspectShadowDOM", "type": "boolean", "optional": true, "description": "True to enable inspection mode for shadow DOM." }, | |
{ "name": "highlightConfig", "$ref": "HighlightConfig", "optional": true, "description": "A descriptor for the highlight appearance of hovered-over nodes. May be omitted if <code>enabled == false</code>." } | |
], | |
"description": "Enters the 'inspect' mode. In this mode, elements that user is hovering over are highlighted. Backend then generates 'inspectNodeRequested' event upon element selection." | |
}, | |
{ | |
"name": "highlightRect", | |
"parameters": [ | |
{ "name": "x", "type": "integer", "description": "X coordinate" }, | |
{ "name": "y", "type": "integer", "description": "Y coordinate" }, | |
{ "name": "width", "type": "integer", "description": "Rectangle width" }, | |
{ "name": "height", "type": "integer", "description": "Rectangle height" }, | |
{ "name": "color", "$ref": "RGBA", "optional": true, "description": "The highlight fill color (default: transparent)." }, | |
{ "name": "outlineColor", "$ref": "RGBA", "optional": true, "description": "The highlight outline color (default: transparent)." } | |
], | |
"description": "Highlights given rectangle. Coordinates are absolute with respect to the main frame viewport." | |
}, | |
{ | |
"name": "highlightQuad", | |
"parameters": [ | |
{ "name": "quad", "$ref": "Quad", "description": "Quad to highlight" }, | |
{ "name": "color", "$ref": "RGBA", "optional": true, "description": "The highlight fill color (default: transparent)." }, | |
{ "name": "outlineColor", "$ref": "RGBA", "optional": true, "description": "The highlight outline color (default: transparent)." } | |
], | |
"description": "Highlights given quad. Coordinates are absolute with respect to the main frame viewport.", | |
"hidden": true | |
}, | |
{ | |
"name": "highlightNode", | |
"parameters": [ | |
{ "name": "highlightConfig", "$ref": "HighlightConfig", "description": "A descriptor for the highlight appearance." }, | |
{ "name": "nodeId", "$ref": "NodeId", "optional": true, "description": "Identifier of the node to highlight." }, | |
{ "name": "objectId", "$ref": "Runtime.RemoteObjectId", "optional": true, "description": "JavaScript object id of the node to be highlighted.", "hidden": true } | |
], | |
"description": "Highlights DOM node with given id or with the given JavaScript object wrapper. Either nodeId or objectId must be specified." | |
}, | |
{ | |
"name": "hideHighlight", | |
"description": "Hides DOM node highlight." | |
}, | |
{ | |
"name": "highlightFrame", | |
"parameters": [ | |
{ "name": "frameId", "$ref": "Page.FrameId", "description": "Identifier of the frame to highlight." }, | |
{ "name": "contentColor", "$ref": "RGBA", "optional": true, "description": "The content box highlight fill color (default: transparent)." }, | |
{ "name": "contentOutlineColor", "$ref": "RGBA", "optional": true, "description": "The content box highlight outline color (default: transparent)." } | |
], | |
"description": "Highlights owner element of the frame with given id.", | |
"hidden": true | |
}, | |
{ | |
"name": "pushNodeByPathToFrontend", | |
"parameters": [ | |
{ "name": "path", "type": "string", "description": "Path to node in the proprietary format." } | |
], | |
"returns": [ | |
{ "name": "nodeId", "$ref": "NodeId", "description": "Id of the node for given path." } | |
], | |
"description": "Requests that the node is sent to the caller given its path. // FIXME, use XPath", | |
"hidden": true | |
}, | |
{ | |
"name": "pushNodeByBackendIdToFrontend", | |
"parameters": [ | |
{ "name": "backendNodeId", "$ref": "BackendNodeId", "description": "The backend node id of the node." } | |
], | |
"returns": [ | |
{ "name": "nodeId", "$ref": "NodeId", "description": "The pushed node's id." } | |
], | |
"description": |