Issue with scraping JS rendered page with Scrapy and Splash
问题 I'm trying to scrape this page which includes following html according to chrome <p class="title"> Orange Paired </p> this is my spider: import scrapy from scrapy_splash import SplashRequest class MySpider(scrapy.Spider): name = "splash" allowed_domains = ["phillips.com"] start_urls = ["https://www.phillips.com/detail/BRIDGET-RILEY/UK010417/19"] def start_requests(self): for url in self.start_urls: yield SplashRequest( url, self.parse, endpoint='render.json', args={'har': 1, 'html': 1} ) def