Page.addCompilationCacheSeeds compilation cache for given url. Compilation cache does not survive cross-process navigation.
| Name | Type | Description |
|---|---|---|
url | string | |
data | string | Base64-encoded data (Encoded as a base64 string when passed over JSON) |
{
"id": 1,
"method": "Page.addCompilationCache",
"params": {
"url": "https://example.com",
"data": "data-value"
}
}
{
"id": 1,
"result": {}
}
const result = await send('Page.addCompilationCache', {"url": "https://example.com", "data": "data-value"});
console.log(result);