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。我不知道该怎么做。也许关于异步和表单提交和操作。