FormRequest that renders JS content in scrapy shell
问题 I'm trying to scrape content from this page with the following form data: I need the County: set to Prince George's and DateOfFilingFrom set to 01-01-2000 so I do the following: % scrapy shell In [1]: from scrapy.http import FormRequest In [2]: request = FormRequest(url='https://registers.maryland.gov/RowNetWeb/Estates/frmEstateSearch2.aspx', formdata={'DateOfFilingFrom': '01-01-2000', 'County:': "Prince George's"}) In [3]: response In [4]: But it's not working(response is None) plus, the