我在Python中使用Selenium webdriver(chrome),尝试从页面上的所有链接获取href。当我尝试以下内容时:
items = driver.find_elements_by_tag_name("a")
print items
for item in items:
href = item.Get_Attribute('href')
print href
它设法获取所有链接,但在get_attribute上我收到错误:
' WebElement'对象没有属性' Get_Attribute'
虽然我看到的任何地方似乎都应该有用。
任何解决方案?
谢谢!
答案 0 :(得分:11)
“Get_Attribute”属性不存在,但“get_attribute”属性执行:
items = driver.find_elements_by_tag_name("a")
print items
for item in items:
href = item.get_attribute('href')
print href
答案 1 :(得分:1)
对于具有输入字段的python来说,
nowText = driver.find_element_by_id("source").get_attribute("value")
print(nowText)
答案 2 :(得分:0)
src = driver.find_element_by_css_selector("img").get_attribute("src")