我正在调查subj,因为有一个网站可以在点击所述链接后访问部分数据。
我有一个这样的剧本:
#!/usr/bin/env python
script="""
splash:go(splash.args.url)
splash:wait(10)
splash:runjs("$('a[data-bet-type=FixedPlace]')[0].click()")
splash:wait(10)
return {
-- html = splash:html(),
png = splash:png(),
-- har = splash:har(),
}
"""
from requests import post
from json import dumps, dump
from base64 import b64decode
from contextlib import suppress
if 1:
endpoint='http://localhost:8050/run'
j={
'lua_source': script,
'url': 'https://www.odds.com.au/horse-racing/bunbury/race-1',
'timeout': 90,
'headers': {
'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64; rv:56.0) Gecko/20100101 Firefox/56.0'
}
}
r=post(endpoint, headers={'Content-Type': 'application/json'}, data=dumps(j))
print(r.status_code)
if r.status_code != 200:
print(r.text)
exit()
j=r.json()
for _ in ('html', 'har'):
with suppress(KeyError), open('1.'+_, 'w') as f: f.write(j[_])
with suppress(KeyError), open('1.png', 'wb') as f: f.write(b64decode(j['png']))
if 'har' in j:
for entry in j['har']['log']['entries']:
url=entry['request']['url']
if url.startswith('https://www.odds.com.au'): print(url)
但是虽然它完美呈现了页面,但点击不会发生。我已经尝试过ya.ru并采用相同的方法(但在这种情况下它是一个按钮)。我没有想法。尝试设置UA,使用js_source进行等待(不是很快,那个页面),但是不能点击一个东西,虽然我看到找到了元素。
答案 0 :(得分:1)
您使用CSS选择器找到的a
元素无法点击 - 请参阅如何将href
值设置为无关联:
<a href="javascript:void(-1);" data-event-id="665605" data-bet-type="FixedPlace">place</a>
您需要点击父li
元素:
$('.bettype__switcher li:last-child')[0].click()
为我工作 - 选择了“地方”投注类型。