我正在尝试使用Scrapy-splash单击页面I'm being redirected to上的按钮。
我已经测试过手动单击页面,然后单击同意的按钮后将重定向到正确的页面。当我重定向到页面时,我已经编写了一个小的脚本来单击按钮,但这不起作用。
我在下面包含了我的蜘蛛的摘要-我的代码中是否缺少某些内容?:
from sys import path
import os
dir_path = os.path.dirname(os.path.realpath(__file__))
path.append(dir_path)
import scrapy
from scrapy_splash import SplashRequest
script="""
function main(splash)
splash:wait(1)
splash:runjs('document.querySelector("form.consent-form").submit()')
splash:wait(1)
return {
html = splash:html(),
}
end
"""
class FoobarSpider(scrapy.Spider):
name = "foobar"
def start_requests(self):
urls = ['https://uk.finance.yahoo.com/quote/ANTO.L?p=ANTO.L']
for url in urls:
yield SplashRequest(url=url, callback=self.parse,
endpoint='render.html',
args={'wait': 3},
meta = {'yahoo_url': url }
)
def parse(self, response):
url = response.url
with open('temp.html', 'wb') as f:
f.write(response.body)
if 'https://guce.' in url:
print('About to attempt to authenticate ...')
yield SplashRequest(
url,
callback = self.get_price,
endpoint = 'execute',
args = {'lua_source': script, 'timeout': 5},
meta = response.meta
)
else:
self.get_price(response)
def get_price(self, response):
print("Get price called!")
yahoo_price = None
try:
# Get Price ...
temp1 = response.css('div.D\(ib\).Mend\(20px\)')
if temp1 and len(temp1) > 1:
temp2 = temp1[1].css('span')
if len(temp2) > 0:
yahoo_price = temp2[0].xpath('.//text()').extract_first().replace(',','')
if not yahoo_price:
val = response.css('span.Trsdu\(0\.3s\).Trsdu\(0\.3s\).Fw\(b\).Fz\(36px\).Mb\(-4px\).D\(b\)').xpath('.//text()').extract_first().replace(',','')
yahoo_price = val
except Exception as err:
pass
print("Price is: {0}".format(yahoo_price))
def handle_error(self, failure):
pass
如何解决此问题,以便我可以正确地表示同意,以便直接转到所需的页面?
答案 0 :(得分:1)
而不是单击按钮,而是尝试提交表单:
document.querySelector("form.consent-form").submit()
我尝试在控制台中运行JavaScript命令input.btn.btn-primary.agree").click()
,但会收到错误消息“糟糕,出现了问题”,但是使用上述代码提交表单时页面会加载。
因为我不在欧洲,所以无法完全重新创建您的设置,但我相信这应该可以帮助您解决问题。我的猜测是,此script正在干扰.click()
方法。