关于scrapy-splash曾经遇到,即使info是显示已经找到该元素却无法点击的情况,查看官网各种点击的用法依然不行,如下
function main(splash)
local url = splash.args.url
splash:set_user_agent('Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36 OPR/46.0.2597.57')
assert(splash:go(url))
assert(splash:wait(1))
local element = splash:select('.result-list .search-result-single:first-child a')
local bounds = element:bounds()
assert(element:mouse_click{x=bounds.width/2+2, y=bounds.height/2+2})
assert(splash:wait(3))
return{
html = splash:html(),
--cookies = splash:get_cookies(),
png = splash:png(),
info = element:info()
--element =
}
end
网上也没搜到相关错误,但偶然情况下,发现修改了select语句,但找到同样的元素却可行。也就是说两种不同的select语句获获取的元素相同,但有一种就是找到却无法点击,情况样本较少无法找到规律。
只能解释如果遇到这种情况,可尝试修改查找元素的语句