gpt4 book ai didi

python - Python 2.7 中的 Try 语句不返回值

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

我正在尝试获取社区类型列表并从网站检索信息。然而,try 语句存在问题。我需要包含 try 语句,因为列表中可能找不到某些社区类型。当我在没有 try 语句的情况下运行代码时,代码可以工作。但是当包含时不起作用并且总是返回异常。

import selenium ## web retrieval
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.common.action_chains import ActionChains ## needed

comm = ['Colorado Plateau Mixed Low Sagebrush Shrubland','Nowhere Land']

for names in comm:
driver = webdriver.Firefox()
driver.get("http://explorer.natureserve.org/servlet/NatureServe?init=Ecol")
SciName = driver.find_element_by_name('nameSpec')
SciName.send_keys(names)
checkbox = driver.find_element_by_name('noPunct')
checkbox.click() ### unselect box
SciName.submit() ## this submits it
try: SciName = driver.find_element_by_link_text(names) #
except selenium.common.exceptions.NoSuchElementException:
print names
print "Exception found"
driver.quit()
continue
SciName.click() ## enter this bad boy
print "I made it"
driver.quit() ### close the open window
print names

对于为什么会发生这种情况有什么想法吗?我在另一个网页上使用了相同的代码,效果很好。

最佳答案

打印错误e返回:

Message: Unable to locate element: {"method":"link text","selector":"Colorado Plateau Mixed Low Sagebrush Shrubland"}` 

Message: Unable to locate element: {"method":"link    text","selector":"Nowhere Land"} 

在您尝试查找可以通过添加 time.sleep 来验证的元素之前,页面尚未加载:

SciName.submit() ## this submits it
time.sleep(2)

您将看到第一个成功,但有些仍然失败,因为您得到没有与您的搜索条件匹配的记录,因此没有可供点击的链接。

如果您使用 EC.presence_of_element_ located 并打印错误,您将确切地看到发生了什么。

try:
element = WebDriverWait(driver, 3).until(
EC.presence_of_element_located((By.LINK_TEXT,names))
)
SciName = driver.find_element_by_link_text(names)
except (selenium.common.exceptions.NoSuchElementException,selenium.common.exceptions.TimeoutException) as e:
print(e)

您还需要导入以下内容:

from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC

在没有 try/except 的情况下运行代码每次都会失败。

关于python - Python 2.7 中的 Try 语句不返回值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28943177/

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