O objeto 'WebElement' do Selenium não tem atributo 'Get_Attribute'

Estou usando o Selenium webdriver (chrome) com Python, tentando obter o href de todos os links da página. quando tento o seguinte:

items = driver.find_elements_by_tag_name("a")
print items

for item in items:
    href = item.Get_Attribute('href')
    print href

Ele consegue obter todos os links, mas em get_attribute eu recebo um erro:

O objeto 'WebElement' não tem atributo 'Get_Attribute'

Embora em todos os lugares que olhei, parece que deveria funcionar.

Alguma solução?

Obrigado!

questionAnswers(3)

yourAnswerToTheQuestion