AttributeError:“NoneType”对象具有属性“click”

问题描述 投票:0回答:1
while captcha:
    try:
        driver.find_element("xpath",
            '/html/body/div[3]/div[1]/div[3]/div/div[4]/div/button'
        ) .click()
    except (
        common.exceptions.NoSuchElementException,
        common.exceptions.ElementClickInterceptedException
    ):
        continue
    driver.set_window_position(-10000, 0)
    print('[!] Running...')
    captcha = False

我已经更改了“元素”,但没有解决该错误,我需要针对此“点击”错误的紧急帮助

我已经更改了“元素”,但没有解决该错误,我需要针对此“点击”错误的紧急帮助

python selenium-webdriver webdriver
1个回答
0
投票

更好地提供完整的上下文。根据您的代码,它显示未找到元素。仔细检查“xpath”是否正确。你可以尝试 find_element_by_css_selector()

© www.soinside.com 2019 - 2024. All rights reserved.