NoSuchElementException:使用Selenium 和Chrome 時無法定位元素
使用Chrome 執行以下錯誤 >:
selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element {"method":"id","selector":"window1"
NoSuchElementException 的原因:
NoSuchElementException 可能會在以下情況下出現:此用例的解決方案:
在此在特定場景中,「window1」畫布無法透過其ID 定位,因為定位器無法唯一標識它。要解決此問題,請使用以下程式碼區塊:WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, "//canvas[@id='window1']"))).click()
其他故障排除提示:
以上是為什麼在 Firefox 中工作時,我的 Selenium Chrome 測試會失敗並出現 NoSuchElementException?的詳細內容。更多資訊請關注PHP中文網其他相關文章!