如题,使用splash操作百度搜索时,模拟鼠标点击,且等待了三秒,返回的截图中,搜索结果为什么是空白?(不是网络问题)
function main(splash)
splash:go("https://www.baidu.com/")
input = splash:select("#kw")
input:send_text('python')
submit = splash:select('#su')
submit:mouse_click() // 模拟鼠标点击
splash:wait(3)
return splash:png()
end
如图,百度搜索结果页面为空白,使用必应搜索截图正常,唯有百度搜索结果为空