Lua /启动画面:未执行到下一页的链接

时间:2019-04-11 13:56:20

标签: lua splash

我正在尝试编写Lua脚本以转到网站的下一页:http://quotes.toscrape.com/js/page/1/

我的脚本:


    function main(splash, args)
      assert(splash:go(args.url))
      assert(splash:wait(0.5))
      assert(splash:runjs('document.querySelector(".next a[href]").click()'))
      splash:set_viewport_full()
      return {
        html = splash:html(),
        png = splash:png(),
        har = splash:har(),
      }
    end

我尝试了多个CSS选择器,它们都可以在浏览器中工作。但是,Lua脚本仅返回第一页,而不会打开下一页。

有人知道是什么原因吗?

感谢您和最诚挚的问候 托比

1 个答案:

答案 0 :(得分:0)

问题解决了!我刚刚添加了1秒的等待语句。这里是正确的代码:

function main(splash, args)
  assert(splash:go(args.url))
  assert(splash:wait(0.5))
  assert(splash:runjs('document.querySelector(".next a[href]").click()'))
  assert(splash:wait(1))
  splash:set_viewport_full()
  return {
    html = splash:html(),
    png = splash:png(),
    har = splash:har(),
  }
end