最新回答 / 慕的地8021373
content = i_item.xpath('.//div[@class="info"]/div/p[1]/text()').extract() 这样子写试试,xpath不要太依赖别人怎么写,试着自己简便下
2019-08-10
最新回答 / 慕娘2257303
报错在“TypeError: 'method' object is not iterable”,在此前的运行是爬虫的正常启动信息。通过报错可知,代码中content的类型错误。不知道你的代码,所以我就举个改错的的例子:在用webdriver时,若用
content = driver.find_element_by_xpath()会出现和你相似的错误,要改为:
content = driver.find_elements_by_xpath()
2019-07-12