我正在尝试使用NightmareJS进行一些我想要实现的自动化。我遇到的一个问题是Nightmare / Electron无法解析adidas网站,但它可以解析并访问任何其他网页。
This is what it looks like when it trys to visit adidas.
有人知道如何解决这个问题吗?其他所有网站都运作良好。这就是我试图连接的方式。
const Nightmare = require("nightmare");
const nightmare = Nightmare({ show: true });
nightmare
.goto('https://adidas.com')
.wait('#r1-0 a.result__a')
.evaluate(() => document.querySelector('#r1-0 a.result__a').href)
.end()
.then(console.log)
.catch((error) => {
console.error('Search failed:', error);
});