我正在使用Python3 + Selenium在Instagram上登录,我正在使用Google Chrome。登录时,我总是得到2个弹出窗口,我试图用它们的xpath来定位它们以关闭它们。
不幸的是,硒找不到它们,而且我总是收到此错误消息:
Traceback (most recent call last):
File "mycode.py", line 61, in <module>
driver.find_element_by_xpath('/html/body/div[4]/div/div/div/div[3]/button[2]').click()
selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element: {"method":"xpath","selector":"/html/body/div[4]/div/div/div/div[3]/button[2]"}
我的代码:
# Load page
driver.get("https://www.instagram.com/accounts/login/")
# Login
driver.find_element_by_xpath("//div/input[@name='username']").send_keys(username)
driver.find_element_by_xpath("//div/input[@name='password']").send_keys(psw)
driver.find_element_by_xpath("//span/button").click()
print('1st popup window\n')
driver.find_element_by_xpath('/html/body/div[4]/div/div/div/div[3]/button[2]').click()
print('2nd popup window\n')
driver.find_element_by_xpath("/html/body/div[2]/div/button").click()
我直接从浏览器中检索了xpath,因此它不应成为此问题的原因。有人知道如何解决这个问题吗? 谢谢!
答案 0 :(得分:1)
解决此问题的一种方法是使用显式等待。显式等待是您定义的代码,用于在继续执行代码之前先等待特定条件发生。可能该按钮需要花费一些时间才能变得可见,并且在它可见之前,Selenium会寻找它并且找不到它,因此引发错误。要解决此问题,请尝试以下操作:
button = WebDriverWait(driver, 10).until(EC.presence_of_element_located((By.XPATH, "yourXPATH")))
button.click()
上面的代码将等待10秒钟,直到找到按钮元素为止;如果在10秒内未找到,则Selenium将抛出TimeoutException错误。
以下导入是代码正常工作所必需的:
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
有关显式等待的更多信息,请访问此网站-http://selenium-python.readthedocs.io/waits.html