gpt4 book ai didi

Python Splinter 单击表条件中的链接

转载 作者:太空宇宙 更新时间:2023-11-03 14:20:40 25 4
gpt4 key购买 nike

鉴于此(“ sleep ”方法是为了让您可以看到我正在看的内容):

from splinter import Browser
import time
#from selenium.webdriver.support.ui import WebDriverWait
#from selenium.webdriver.remote.webdriver import WebDriver

with Browser() as browser:
# Visit URL
url = "https://mdoe.state.mi.us/moecs/PublicCredentialSearch.aspx"
browser.visit(url)
browser.fill('ctl00$ContentPlaceHolder1$txtCredentialNumber', 'IF0000000262422')

# Find and click the 'search' button
button = browser.find_by_name('ctl00$ContentPlaceHolder1$btnSearch')
# Interact with elements
button.first.click()
#implicitly_wait(time_to_wait=5)
time.sleep(30)

我希望 Splinter/Selenium 单击右列中与左列(同一行)中的值“专业教学认证续订”相对应的链接。

这是我到目前为止所尝试过的(在上面的代码之后):

tables=browser.find_by_tag('table') #Get all tables
rows=tables.find_by_tag('tr') #Get all rows in the tables
data=rows.find_by_tag('td') #Get the data(cell)s in the rows

我的策略是找到具有值(数据)“专业教学认证续订”的行,并针对该相应行,单击右列中的链接。我不确定是否有更好的策略,但如果有的话我肯定不会选择这种策略。

我无法弄清楚(当然,在阅读文档之后,除非我错过了什么)如何检查数据对象并确定它包含的内容。如果我能做到这一点,我也许就能弄清楚剩下的事情。

提前致谢!

最佳答案

据我了解,由于您事先知道专业教学证书更新文本,并且可以使用它来定位下一栏中的链接,因此我们可以首先找到td 通过文本,然后继续到 next sibling td 元素抓取内部链接:

certificate_link = browser.find_by_xpath("//td[. = 'Professional Teaching Certificate Renewal']/following-sibling::td/a") 
certificate_link.first.click()

关于Python Splinter 单击表条件中的链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47971823/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com