程序结束但未完成任务

问题描述 投票:0回答:1

当我运行我的脚本时,它会在完成while循环中的任务之前结束。

driver = webdriver.Chrome()
driver.get('http://example.com')
#input("Press any key to continue1")
s_b_c_status = "False"
while s_b_c_status == "True":
    try:
        if(driver.find_element_by_xpath("//div[@role='button' and @title='Status']")):
            s_b_c_status = "True"
    except NoSuchElementException:
        s_b_c_status = "False"
if(s_b_c_status == "True"):
    print("Scanning Done!")
else:
print("Error")

由于我的网站没有元素,它应该始终打印Error,但是当我运行我的代码时,它只打印Error一次(虽然它在while循环中检查)。

我真正需要的是:脚本应检查元素是否存在,直到元素存在,然后运行其余代码。

python-3.x loops selenium while-loop
1个回答
4
投票

你的代码在逻辑上有一个明显的缺陷:

s_b_c_status = "False"
while s_b_c_status == "True"

你已经将s_b_c_status定义为"False",所以你的while循环甚至不会做一次迭代......

如果您需要等待元素出现在DOM中,请尝试实现ExplicitWait

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

driver = webdriver.Chrome()
driver.get('http://example.com')

try:
    WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, "//div[@role='button' and @title='Status']")))
except TimeoutException:
    print("Element not found")
© www.soinside.com 2019 - 2024. All rights reserved.