我正在尝试使用Splash浏览器呈现此页面https://www.tokopedia.com/hannateknik,但似乎splash无法呈现整个js页面。
未呈现Web JS
这是我的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