I am scraping manulifeアンカータグ<a href = "#"> using scrapy
を含むWebページをこする私は、次のページに行きたい、私が調べたときに「次」私が手:
<span class="pagerlink">
<a href="#" id="next" title="Go to the next page">Next</a>
</span>
フォローする正しいアプローチ何ができますか?
# -*- coding: utf-8 -*-
import scrapy
import json
from scrapy_splash import SplashRequest
class Manulife(scrapy.Spider):
name = 'manulife'
#allowed_domains = ['https://manulife.taleo.net/careersection/external_global/jobsearch.ftl?lang=en']
start_urls = ['https://manulife.taleo.net/careersection/external_global/jobsearch.ftl?lang=en&location=1038']
def start_requests(self):
for url in self.start_urls:
yield SplashRequest(
url,
self.parse,
args={'wait': 5},
)
def parse(self, response):
#yield {
# 'demo' : response.css('div.absolute > span > a::text').extract()
# }
urls = response.css('div.absolute > span > a::attr(href)').extract()
for url in urls:
url = "https://manulife.taleo.net" + url
yield SplashRequest(url = url, callback = self.parse_details, args={'wait': 5})
#self.log("reaced22 : "+ url)
#hitting next button
#data = json.loads(response.text)
#self.log("reached 22 : "+ data)
#next_page_url =
if next_page_url:
next_page_url = response.urljoin(next_page_url)
yield SplashRequest(url = next_page_url, callback = self.parse, args={'wait': 5})
def parse_details(self,response):
yield {
'Job post' : response.css('div.contentlinepanel > span.titlepage::text').extract(),
'Location' : response.xpath("//span[@id = 'requisitionDescriptionInterface.ID1679.row1']/text()").extract(),
'Organization' : response.xpath("//span[@id = 'requisitionDescriptionInterface.ID1787.row1']/text()").extract(),
'Date posted' : response.xpath("//span[@id = 'requisitionDescriptionInterface.reqPostingDate.row1']/text()").extract(),
'Industry': response.xpath("//span[@id = 'requisitionDescriptionInterface.ID1951.row1']/text()").extract()
}
ご覧のとおり、コードにはSplashRequestが含まれていますが、次のページのリンクをクリックします。
私はどこかに、私はウェブサイトでも、JSONとしてレスポンスを返すことができることを発見し、スクレイピングで初心者です。私はそれを試してみましたが、私はこれが仕事ができるようにCSSセレクタ".pagerlink a[title='Go to the next page']"
を使用して考えてくれ
私もそれを試してみましたが、結果はありません。 –
治療はjavascriptを解釈することはできません、そのようなもののためにセレンを使用してください。 – shotgunner
私は、javascriptリクエストを処理するために使用されるscrapy-splashを使用しました。 @shotgunner –