1

我想弄清楚如何让脚本点击链接并转到某个页面,然后执行一些操作。这是我坚持的例子,那是行不通的。

var Nightmare = require('nightmare');
var nightmare = Nightmare({ show: true });

nightmare

.goto("https://www.google.com/")
.type("input", "nightmare.js")
.wait(3000)
.click("button[type=submit]")
.wait(2000)
.evaluate(function(){
  var title = document.querySelectorAll("h3 a");
  i = 0;

  if (title) {
    title[i].addEventListener("click", function(){
      setTimeout(function(){
          alert("Success!");
        }, 5000);
    });
  }
})

.then(function(result){
    console.log("result", result);
})
.catch(function (error) {
    console.error('Search failed:', error);
});

如您所见,它甚至不会转到下一页。

但是如果我像这样定义点击,它将转到下一页,但我也需要它在另一个页面上执行一些功能:

.evaluate(function(){
  var title = document.querySelectorAll("h3 a");
  i = 0;

  if (title) {
    title[i].click();
  }
})

所以它让我感到困惑,不知道为什么它不起作用。

4

1 回答 1

0

好的,我认为主要问题在于您如何尝试单击该链接。现在,您在噩梦链式回调(.goto().type().wait()...链)的主要流程之外执行此操作。如果您更改流程以使用链,并.click()再次使用而不是.evaluate(),您可以在下一页上执行操作:

nightmare
.goto("https://www.google.com/")
.type("input", "nightmare.js")
.wait(3000)
.click("button[type=submit]")
.wait("h3[class=r]")
.click("h3[class=r] a")
.evaluate(function(){
  return document.querySelector("h1 a").innerHTML
})
.end()
.then(function(result){
    console.log("result", result);
})
.catch(function (error) {
    console.error('Search failed:', error);
});

这会输出带有 Nightmare 页面<h1></h1>标签链接的内容,即“Nightmare”

于 2016-08-25T21:21:56.857 回答