在 Nightmare.js 中启用 JavaScript
我正在尝试抓取一个具有一些服务器端和一些客户端渲染的网站。不幸的是,在当前设置下,我得到的结果看起来与禁用 JavaScript 后在浏览器中加载页面完全相同。知道如何在 Nightmare.js 中启用 JavaScript 吗?
const Nightmare = require('nightmare')
const nightmare = Nightmare({
show: true
});
nightmare
.goto('https://www.crunchbase.com/organization/celonis')
.scrollTo(10,10)
.wait(5000)
.evaluate(function() {
return {
'website': document.querySelectorAll('.icon_and_value li')[4].querySelector('label-with-icon span a').href,
'img_url': document.querySelector('identifier-image').innerHTML
}
})
.end()
.then(function(dict) {
console.log(dict)
})
I am trying to scrape a website that has some server-side and some client-side rendering. Unfortunately, with the current setup the result I get back looks exactly the same as if I load the page in the browser after disabling JavaScript. Any idea how I can enable JavaScript in nightmare.js?
const Nightmare = require('nightmare')
const nightmare = Nightmare({
show: true
});
nightmare
.goto('https://www.crunchbase.com/organization/celonis')
.scrollTo(10,10)
.wait(5000)
.evaluate(function() {
return {
'website': document.querySelectorAll('.icon_and_value li')[4].querySelector('label-with-icon span a').href,
'img_url': document.querySelector('identifier-image').innerHTML
}
})
.end()
.then(function(dict) {
console.log(dict)
})
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论