标签:gif desc ret his seed created class case span
pageFunction
<function|string> Function to be evaluated in browser context...args
<...Serializable> Arguments to pass to pageFunction
Adds a function which would be invoked in one of the following scenarios:
The function is invoked after the document was created but before any of its scripts were run. This is useful to amend the JavaScript environment, e.g. to seed Math.random
.
// overwrite the `languages` property to use a custom getter
Object.defineProperty(navigator, "languages", {
get: function() {
return ["en-US", "en", "bn"];
}
});
// In your puppeteer script, assuming the preload.js file is in same folder of our script
const preloadFile = fs.readFileSync(‘./preload.js‘, ‘utf8‘);
await page.evaluateOnNewDocument(preloadFile);
标签:gif desc ret his seed created class case span
原文地址:https://www.cnblogs.com/justart/p/9747720.html