解決 Selenium 中的 StaleElementReferenceException
Selenium 測試偶爾會遇到 StaleElementReferenceException,表明所引用的元素已變得不可訪問或無效。為了增強這些測試的穩定性,可以考慮以下幾種方法:
1。元素修正:
實作一種機制,在每次存取元素時重新定位該元素。這可以使用 driver.findElementBy()、driver.findElementsBy() 或 WebElement.findElement() 等方法來完成。
2。元素同步:
在與元素互動之前確保元素已完全載入且穩定。利用顯式等待,例如 driver.manage().timeouts().implicitlyWait(),為元素變得可用和可存取提供緩衝時間。
3.元素快取:
將元素引用儲存在快取中以避免重複搜尋。但是,請小心陳舊的引用並實施失效策略以確保快取的有效性。
4. Try-Catch 區塊:
將關鍵互動包含在 try-catch 區塊中,處理 StaleElementReferenceException 的發生。在循環內重試該操作幾次,以允許短暫的 DOM 變更。
5.元素辨識最佳化:
使用特定且簡潔的元素定位器來最大程度地減少影響測試的意外元素變更的可能性。考慮使用 CSS 選擇器、XPath 或相對定位器而不是脆弱的絕對定位器。
範例實作:
以下程式碼片段示範了處理 StaleElementReferenceException 的重試方法:
public boolean retryingFindClick(By by) { boolean result = false; int attempts = 0; while (attempts < 2) { try { driver.findElement(by).click(); result = true; break; } catch (StaleElementException e) { } attempts++; } return result; }
以上是如何有效解決 Selenium 測試中的 StaleElementReferenceExceptions?的詳細內容。更多資訊請關注PHP中文網其他相關文章!