单击使用Electron和Nightmare的按钮

时间:2016-11-29 05:12:12

标签: async-await electron nightmare

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


nightmare
        .goto('http://football-system.jp/fss/pub_taikaigamelist.php?lid=eBVesRz5C54=')
        .wait(1000)
        .click('a[href="javascript:void(0);"]')
        .wait(1000)

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

这是我的代码。我想单击按钮并获取下一页的HTML。但我想使用Nightmare和Electron。我不知道该怎么做。也许关于异步和表单提交和操作。

0 个答案:

没有答案