我在下面有一个问题代码,其中元素变得可见并且未被点击。我尝试了css选择器和xpath。
import time
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.wait import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
PROXY = "socks5://184.178.172.13:15311" # IP:PORT or HOST:PORT
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument('--proxy-server=%s' % PROXY)
driver = webdriver.Chrome(chrome_options=chrome_options)
driver.get('https://nitrogensports.eu/sport/tennis/starting-soon')
wait = WebDriverWait(driver, 30)
table = wait.until(EC.presence_of_element_located((By.XPATH, '//*[@id="modal-welcome-new-button"]')))
table.click()
table = wait.until(EC.presence_of_element_located((By.XPATH, '//div[class="div.events-result-set"]')))
print("finished")
time.sleep(30)
driver.close()
答案 0 :(得分:1)
根据您的问题,标识为(By.XPATH, '//*[@id="modal-welcome-new-button"]')
的元素未被点击。
等待结束后,识别并返回元素,在调用click()
方法时向前移动,而不是使用expected_conditions方法presence_of_element_located
,而是需要使用方法element_to_be_clickable
如下:
driver.get('https://nitrogensports.eu/sport/tennis/starting-soon')
WebDriverWait(driver, 30).until(EC.element_to_be_clickable((By.XPATH, "//div[@class='party-button highlightable-button highlighted' and @id='modal-welcome-new-button']"))).click()