使用Splash

时间:2019-06-27 08:40:38

标签: splash-js-render

我正在尝试将链接向下刮取,并在下面使用Splash(在Web浏览器中)渲染了一些Javascript。 不幸的是,搜索结果无法呈现,就像取消激活Javascript一样。 我能够使用Selenium成功加载页面,但我真的很想使其也与Splash一起使用。

link = https://www.orpi.com/recherche/buy?transaction=buy&resultUrl=&locations%5B0%5D%5Bvalue%5D=paris&locations%5B0%5D%5Blabel%5D=Paris&agency=&minSurface=&maxSurface=&newBuild=&oldBuild=&minPrice=&maxPrice=&sort=date-down&layoutType=mixte&nbBedrooms=&page=2&minLotSurface=&maxLotSurface=&minStoryLocation=&maxStoryLocation=

我尝试过但没有成功:1 /增加了Lua Script中的等待时间2 /将启动设置为私有模式

这是我尝试过的Lua脚本:

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

您是否有解决此问题的想法? 非常感谢!

0 个答案:

没有答案