我正在尝试从此页面上的特定元素中抓取文本数据(使用 scraperwiki)
import requests
from lxml import html
response = requests.get(http://portlandmaps.com/detail.cfm?action=Assessor&propertyid=R246274)
tree = html.fromstring(response.content)
owner = tree.xpath('/html/body/div[2]/table[1]/tbody/tr[11]/td[2]')
print owner.text
scraperwiki 控制台返回:
AttributeError: 'list' object has no attribute 'text'
我使用 Google Chrome 查找 XPath,但我假设 requests 使用与 chrome 相同的标准