Splash не отображает всю страницу js - PullRequest
0 голосов
/ 21 марта 2019

Я пытаюсь отобразить эту страницу https://www.tokopedia.com/hannateknik с помощью браузера Splash, но похоже, что Splash не отображает всю страницу js.

веб-файлы не отображаются web js not rendered pic

Это мой сценарий lua.

function main(splash, args)
  assert(splash:go(args.url))
  assert(splash:wait(15))
  splash:set_viewport_full()
  splash.private_mode_enabled = false
  return {
    html = splash:html(),
    png = splash:png(),
    har = splash:har(),
  }
end
...