因此,我想等待弹出窗口,然后单击“接受”。 HTML看起来像这样:
<div class="termsBtn" onclick="checkTerms(0)" style="background-color:#dd4a42">Decline</div>
<div class="termsBtn" onclick="checkTerms(1)" style="background-color:#a6dd42">Accept</div>
我已经尝试了各种方法,但是对于当前的代码,我得到了一个TimeoutException:
selenium.common.exceptions.TimeoutException: Message:
我当前的代码:
from selenium.webdriver.support import expected_conditions as ec
wait = WebDriverWait(driver, 10)
popup = wait.until(ec.element_to_be_clickable((By.XPATH, '//input[@onclick="checkTerms(1)"]')))
popup.click()
答案 0 :(得分:1)
您的元素没有输入标签,它是div标签。请在xpath下尝试。
wait = WebDriverWait(driver, 10)
popup = wait.until(ec.element_to_be_clickable((By.XPATH, '//div[@class="termsBtn"][text()="Accept"]')))
popup.click()
答案 1 :(得分:0)
您可以使用ExpectedConditions.visibilityOfElementLocated,它将等到元素不可见
来源:
Webdriver How to wait until the element is clickable in webdriver C#
答案 2 :(得分:0)
由于所需元素位于弹出窗口中,因此必须对元素上的click()
诱导element_to_be_clickable()
的 WebDriverWait ,并且可以使用以下任一解决方案:
使用CSS_SELECTOR
:
WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.CSS_SELECTOR, "div.termsBtn[onclick*='1']"))).click()
使用XPATH
:
WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, "//div[@class='termsBtn' and text()='Accept']"))).click()
注意:您必须添加以下导入:
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC