码迷,mamicode.com
首页 > Web开发 > 详细

预备JS执行环境,预执行脚本

时间:2018-10-06 17:08:44      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:gif   desc   ret   his   seed   created   class   case   span   

page.evaluateOnNewDocument(pageFunction, ...args)

Adds a function which would be invoked in one of the following scenarios:

  • whenever the page is navigated
  • whenever the child frame is attached or navigated. In this case, the function is invoked in the context of the newly attached frame

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);

预备JS执行环境,预执行脚本

标签:gif   desc   ret   his   seed   created   class   case   span   

原文地址:https://www.cnblogs.com/justart/p/9747720.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!