我正在尝试爬取保险网站 www.ehealthinsurance.com。它的主页有一个依赖于 POST 的表单,其中它采用某些值并生成下一页。我正在尝试传递值,但无法看到我想要的所需标签的 HTML 源代码。任何建议都会有很大帮助。
内联是scrapy代码:
class ehealthSpider(BaseSpider):
name = "ehealth"
allowed_domains = ["ehealthinsurance.com/"]
start_urls = ["http://www.ehealthinsurance.com/individual-health-insurance"]
def parse(self, response):
yield FormRequest.from_response(response,
formname='main',
formdata={'census.zipCode': '48341',
'census.requestEffectiveDate': '06/01/2013',
'census.primary.gender': 'MALE',
'census.primary.month': '12',
'census.primary.day': '01',
'census.primary.year': '1971',
'census.primary.tobacco': 'No',
'census.primary.student': 'No'}, callback=self.parseAnnonces)
def parseAnnonces(self, response):
hxs = HtmlXPathSelector(response)
data = hxs.select('//div[@class="main-wrap"]').extract()
#print encoding
print data
这是终端响应中的爬虫
2013-04-30 16:34:16+0530 [elyse] DEBUG: Crawled (200) <GET http://www.ehealthin
urance.com/individual-health-insurance> (referer: None)
2013-04-30 16:34:17+0530 [elyse] DEBUG: Filtered offsite request to 'www.ehealt
insurance.com': <POST http://www.ehealthinsurance.com/individual-health-insuran
e;jsessionid=F5A1123CE731FDDDC1A7A31CD46CC132.prfo23a>
2013-04-30 16:34:17+0530 [elyse] INFO: Closing spider (finished)
2013-04-30 16:34:17+0530 [elyse] INFO: Dumping Scrapy stats:
{'downloader/request_bytes': 257,
'downloader/request_count': 1,
'downloader/request_method_count/GET': 1,
'downloader/response_bytes': 32561,
'downloader/response_count': 1,
'downloader/response_status_count/200': 1,
'finish_reason': 'finished',
'finish_time': datetime.datetime(2013, 4, 30, 11, 4, 17, 22000),
'log_count/DEBUG': 8,
'log_count/INFO': 4,
'request_depth_max': 1,
'response_received_count': 1,
'scheduler/dequeued': 1,
'scheduler/dequeued/memory': 1,
'scheduler/enqueued': 1,
'scheduler/enqueued/memory': 1,
'start_time': datetime.datetime(2013, 4, 30, 11, 4, 10, 494000)}
你能帮我得到想要的数据吗?