【发布时间】:2015-04-08 15:15:30
【问题描述】:
我正在尝试从网站中选择文档中的超链接,但不确定如何使用 Selenium 选择它。
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
names = 'Catostomus discobolus yarrowi'
driver = webdriver.Firefox()
driver.get("http://ecos.fws.gov/ecos/home.action")
SciName = driver.find_element_by_id('searchbox')
SciName.send_keys(names)
SciName.send_keys(Keys.RETURN)
上面的代码到达了我感兴趣的页面,但不确定如何选择超链接。我有兴趣选择第一个超链接。感兴趣的 html 是
<a href="http://ecos.fws.gov/speciesProfile/profile/speciesProfile.action?spcode=E063" data-click="{"p":1}">Zuni Bluehead Sucker (<strong>Catostomus discobolus</strong> yarrowi)</a>
</h4>
<div class='url'>ecos.fws.gov/speciesProfile/profile/speciesProfile.action?spcode=E063</div>
<span class='description'>
States/US Territories in which the Zuni Bluehead Sucker is known to or is believed to occur: Arizona, New Mexico; US Counties in which the Zuni ...
</span>
<ul class='sitelinks'></ul>
</div>
我猜我可以使用 find_element_by_xpath,但一直无法成功。我希望始终选择第一个超链接。此外,超链接名称将根据输入的物种名称而改变。
【问题讨论】: