首頁 >後端開發 >Python教學 >為什麼 Selenium 無法點擊我的「取得資料」按鈕,我該如何修復它?

為什麼 Selenium 無法點擊我的「取得資料」按鈕,我該如何修復它?

Mary-Kate Olsen
Mary-Kate Olsen原創
2024-12-09 05:53:091021瀏覽

Why Can't Selenium Click My

Selenium 無法使用Python 點擊「取得資料」按鈕

在嘗試從網站抓取資料時,您在使用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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn