如何使用Python Selenium获取数据?

时间:2016-08-30 07:18:41

标签: python html web selenium-webdriver

链接位于:http://www.imei.info/phonedatabase/790-alcatel-9109-mb2/

我已经可以在Python中使用Selenium-Webdriver打开此网站。现在我正试图从这个网站获得battery type

enter image description here

2 个答案:

答案 0 :(得分:0)

使用以下代码获取电池类型:

 batteryType =  driver.find_element(By.XPATH, '//div[@class='cc' and contains(text(), 'Li-Ion')]').text() 

使用.text()获取元素的字符串。

答案 1 :(得分:0)

您应该尝试使用xpath,如下所示: -

type = driver.find_element_by_xpath("//*[text() = 'Battery:']/following-sibling::div").text