噩梦JS控制台日志东西
我有这样的代码:噩梦JS控制台日志东西
nightmare .goto('https://xxxdsfdx.com')
.type('#ap_email', '[email protected]')
.type('#ap_password', 'passsword')
.click('#signInSubmit')
.wait('#report-wrapper')
.click('.a-tab-heading:nth-child(7)')
.evaluate(() => document.querySelector('.a-box-inner'))
.then(console.log)
.catch((error) => {
console.error('failed:', error);
});
我想CONSOLE.LOG .a-box-inner
DIV
如何做到这一点的内容是什么?
回答:
.then(console.log.bind(console))
回答:
我应该把innerHTML的
.evaluate(() => document.querySelector('.a-box-inner')).innerHTMl
以上是 噩梦JS控制台日志东西 的全部内容, 来源链接: utcz.com/qa/260083.html