如果我们有链接:
<a href="http://example.com" class="abc">Text</a>
我们如何从此代码中获取网址http://example.com? 使用selenium webdriver python(可以接受其他语言)
driver.find_element_by_class_name('abc')
会提供文字,而非链接。
答案 0 :(得分:3)
element = driver.find_element_by_class_name('abc')
href = element.get_attribute('href')
href # => u'http://example.com/'