在嘗試從網站抓取資料時,您在使用Selenium 點擊「取得資料」時遇到困難按鈕。儘管使用了 XPath 和 ID 定位器,但您仍然沒有成功。
要解決此問題,您可以利用以下定位器策略來點擊按鈕:
CSS選擇器:
driver.find_element_by_css_selector("img.getdata-button#get").click()
XPath:
driver.find_element_by_xpath("//img[@class='getdata-button'][@id='get']").click()
為了增強穩定性,建議使用使用CSS 選擇器或XPath定位器:
使用 CSS選擇器:
from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.common.by import By from selenium.webdriver.support import expected_conditions as EC WebDriverWait(driver, 20).until(EC.element_to_be_clickable(By.CSS_SELECTOR, "img.getdata-button#get")).click()
使用XPath:
WebDriverWait(driver, 20).until(EC.element_to_be_clickable(By.XPATH, "//img[@class='getdata-button'][@id='get']")).click()
請記住包含必要🎜的導入:
from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.common.by import By from selenium.webdriver.support import expected_conditions as EC
以上是為什麼 Selenium 無法點擊我的「取得資料」按鈕,我該如何修復它?的詳細內容。更多資訊請關注PHP中文網其他相關文章!