我正在尝试从 URL https://play.google.com/store/apps/details?id=com.teslacoilsw.launcher&hl=en获取数据并获取以下数据
<meta content="3.99" itemprop="price">
我使用以下在 Python 中实现的代码来获取,但它失败了。
browser = webdriver.Firefox() # Get local session of firefox
browser.get(sampleURL) # Load page
assert "Google Play" in browser.title
priceValue = browser.find_element_by_xpath("//div[@itemprop='price']")#
print priceValue.text
但它说它找不到价值价格的xpath。知道为什么吗?
编辑
priceValue = browser.find_element_by_xpath("//meta[@itemprop='price']")
print priceValue.text
我得到空字符串