テストを実行すると、次のエラーが発生します:org.openqa.Selenium.StaleElementReferenceException:要素がDOMにアタッチされなくなった
上記の例外を解決する方法について何か考えはありますか?これは、動的なref Xpath式を持つグリッドで発生します
私はこれと同じ問題に遭遇し、解決策を見つけることができませんでした。解決策を思いついて、ここに投稿してください。これが同じ問題のある人に役立つことを願っています。タイプ、cssselector、idなどに応じて古い要素を処理するクラスを作成し、他のページオブジェクトと同じように呼び出すだけです。
public void StaleElementHandleByID (String elementID){
int count = 0;
boolean clicked = false;
while (count < 4 || !clicked){
try {
WebElement yourSlipperyElement= driver.findElement(By.id(elementID));
yourSlipperyElement.click();
clicked = true;
} catch (StaleElementReferenceException e){
e.toString();
System.out.println("Trying to recover from a stale element :" + e.getMessage());
count = count+1;
}
}
WebDriverで問題が発生することがわかっている要素でのみ使用することをお勧めします。
この問題を回避するには、WebdriverWrapperおよびWebElementWrapperと呼ばれる処理を実行します。
これらのラッパーが行うことは、StaleElementExceptionを内部で処理し、ロケーターを使用して新しいWebElementオブジェクトを再評価して取得することです。このようにして、例外を処理するコードをコードベース全体に拡散し、1つのクラスにローカライズする必要があります。
私はこれらのクラスのいくつかだけをすぐにオープンソーシングで調べ、興味がある場合はここにリンクを追加します。
ページ上に存在しないWebElementのメソッドを使用しようとすると、その例外がスローされます。グリッドが動的にデータを読み込んでいるときにグリッドを更新すると、そのグリッド上の要素への参照はすべて「古く」なります。参照しようとしている要素がテストのページにあることを再確認します。オブジェクトを再インスタンス化する必要がある場合があります。
また、この問題が発生しました。モーダルパネルの読み込みが競合状態に陥り、タイムアウトするまで待機し続けるのは明らかです。
私は何度も試しましたが、解決策は、モーダルパネルの読み込みをwebDriverで正確に見つかるまで保持し、同時にwebDriverインスタンスを更新し続けてから、モーダルパネル内でWebElementsを見つけてみることです。
したがって、解決策は次のようになります。 MyModalPanelはModalPanel IDであり、次の操作を行います
page.openModalPanel();
Assert.assertTrue(page.waitTillDisplay( "MyModalPanelContentDiv"), Wait.MODAL_PANEL));
page.fillInFormInModalpanel(formObj);
そして、waitTillDisplayコードはWebDriverのWebサイトにあります。参照用にここにコードを貼り付けます。
public Boolean waitTillDisplay(final String id, int waitSeconds){
WebDriverWait wait = new WebDriverWait(driver, waitSeconds);
Boolean displayed = wait.until(new ExpectedCondition<Boolean>() {
public Boolean apply(WebDriver driver) {
return driver.findElement(By.id(id)).isDisplayed();
}
});
return displayed;
}
public static Boolean executeElementSendKeys
(WebDriver driver, WebElement element, String sInputParameters) throws Exception {
return (Boolean) executeElementMaster
(driver, element, "sendKeys", sInputParameters, 30, true);
}
public static Boolean executeElementClear
(WebDriver driver, WebElement element) throws Exception {
return (Boolean) executeElementMaster (driver, element, "clear", "", 30, true);
}
public static String executeElementGetText
(WebDriver driver, WebElement element) throws Exception {
return (String) executeElementMaster (driver, element, "getText", "", 30, true);
}
public static Boolean executeElementClick
(WebDriver driver, WebElement element) throws Exception {
return (Boolean) executeElementMaster (driver, element, "click", "", 30, true);
}
public static boolean executeElementIsDisplayed
(WebDriver driver, WebElement element) throws Exception {
return (Boolean) executeElementMaster (driver, element, "isDisplayed", "", 30, true);
}
public static String executeElementGetAttribute
(WebDriver driver, WebElement element, String sInputParameters) throws Exception {
return (String) executeElementMaster
(driver, element, "getAttribute", sInputParameters, 30, true);
}
//そして、以下はStaleElementReferenceException
およびその他の例外を処理するマスターメソッドです。
//このメソッドでStaleElementReferenceException
のみのアクション(クリック、sendkeysなど)を再試行し、他の例外は再試行しない場合は、catchセクションで(Exception e)
を(StaleElementReferenceException e)
に置き換えます。
private static Object executeElementMaster(WebDriver driver, WebElement element, String sExecuteAction, String sInputParametersOptional, int MaxTimeToWait,
boolean bExpectedElementState) throws Exception {
try {
// Local variable declaration
String sElementString = "";
String sElementXpath = "";
Object ReturnValue = "";
int Index = 0;
boolean bCurrentElementState = true;
boolean bWebDriverWaitUntilElementClickableFlag = false;
System.out.println("**** Execute method '" + sExecuteAction + "' on '" + sElementString + "' - Expected : '" + bExpectedElementState + "'");
System.out.println("**** MaxTimeToWait ='" + MaxTimeToWait + "' seconds");
// Set browser timeout to 1 second. Will be reset to default later
driver.manage().timeouts().implicitlyWait(1, TimeUnit.SECONDS);
// Keep trying until 'MaxTimeToWait' is reached
for (int i = 0; i < MaxTimeToWait; i++) {
try {
// Get element xPath - and find element again
if (element != null && i < 2 && sElementString == "") {
sElementString = (element).toString();
if (sElementString.contains("xpath: ")) {
// Retrieve xPath from element, if available
Index = sElementString.indexOf("xpath: ");
sElementXpath = sElementString.substring(Index + 7, sElementString.length());
}
}
// Find Element again
if (sElementXpath != "" && i > 0) {
element = driver.findElement(By.xpath(sElementXpath));
}
// Execute the action requested
switch (sExecuteAction) {
case ("isDisplayed"):
// Check if element is displayed and save in bCurrentElementState variable
ReturnValue = element.isDisplayed();
bCurrentElementState = (Boolean) ReturnValue;
bWebDriverWaitUntilElementClickableFlag = true;
break;
case ("getText"):
ReturnValue = element.getText();
bCurrentElementState = true;
bWebDriverWaitUntilElementClickableFlag = false;
break;
case ("sendKeys"):
// Scroll element into view before performing any action
element.sendKeys(sInputParametersOptional);
ReturnValue = true;
bCurrentElementState = true;
bWebDriverWaitUntilElementClickableFlag = false;
break;
case ("clear"):
// Scroll element into view before performing any action
element.clear();
ReturnValue = true;
bCurrentElementState = true;
bWebDriverWaitUntilElementClickableFlag = false;
break;
case ("click"):
// Scroll element into view before performing any action
element.click();
ReturnValue = true;
bCurrentElementState = true;
bWebDriverWaitUntilElementClickableFlag = false;
break;
default:
ReturnValue = element.getAttribute(sInputParametersOptional);
bCurrentElementState = true;
break;
}
} catch (Exception e) {
Thread.sleep(500);
bCurrentElementState = false;
ReturnValue = false;
}
if (bCurrentElementState == bExpectedElementState) {
// If element's actual and expected states match, log result and return value
System.out.println("**** PASSED: Execute method '" + sExecuteAction + "' on '" + sElementString + "' - Returned '" + ReturnValue + "' **** \n"
+ "Actual element status: '" + bCurrentElementState + "' Expected element status: '" + bExpectedElementState + "'");
break;
} else {
// If element's actual and expected states do NOT match, loop until they match or timeout is reached
Thread.sleep(500);
}
}
// Reset browser timeout to default
driver.manage().timeouts().implicitlyWait(3, TimeUnit.SECONDS);
// Return value before exiting
if (bCurrentElementState != bExpectedElementState) {
// If element's actual and expected states do NOT match, log result and return value
System.out.println("**** FAILED: Execute method '" + sExecuteAction + "' on '" + sElementString + "' - Returned '" + ReturnValue + "' **** \n"
+ "Actual element status: '" + bCurrentElementState + "' Expected element status: '" + bExpectedElementState + "'");
if (sExecuteAction.equalsIgnoreCase("findElement")) {
ReturnValue = null;
}
}
return ReturnValue;
} catch (Exception e) {
System.out.println("Exception in executeElementMaster - " + e.getMessage());
throw (e);
}
}
要素をクリックした後、要素のプロパティを取得しようとしている可能性があります。
同じ問題があり、クリックされた後、ボタンのgetText()を試みました。私の場合、ボタンをクリックすると新しいウィンドウが表示されます。
私はFluentWaitとExpectedConditionの適用オーバーライドを使用しました: https://Gist.github.com/djangofan/5112655 。これは、他の人がこれに答える方法とは異なり、ファイナライズされたブロック内の例外を処理し、連続する試行をそのブロックでラップできるようにします。これはもっとエレガントだと思います。
public static void clickByLocator( final By locator ) {
final long startTime = System.currentTimeMillis();
driver.manage().timeouts().implicitlyWait( 5, TimeUnit.SECONDS );
Wait<WebDriver> wait = new FluentWait<WebDriver>( driver )
.withTimeout(90000, TimeUnit.MILLISECONDS)
.pollingEvery(5500, TimeUnit.MILLISECONDS);
//.ignoring( StaleElementReferenceException.class );
wait.until( new ExpectedCondition<Boolean>() {
@Override
public Boolean apply( WebDriver webDriver ) {
try {
webDriver.findElement( locator ).click();
return true;
} catch ( StaleElementReferenceException e ) { // try again
return false;
}
}
} );
driver.manage().timeouts().implicitlyWait( DEFAULT_IMPLICIT_WAIT, TimeUnit.SECONDS );
long endTime = System.currentTimeMillis();
long totalTime = endTime - startTime;
log("Finished click after waiting for " + totalTime + " milliseconds.");
}
迅速で汚れたソリューション:
el.click()
time.sleep(1)
その後、反復方法で解析を続けます
@ netz75:ありがとう。クリックが2番目のページにリダイレクトするときにこの問題が発生していました。これは私のために働きました:
//.. (first page asserts)
//...
element.Click();
Thread.Sleep(200);
//.. (second page asserts)
//...
より柔軟になるようにいくつかの変更を加えました。
delegate void StaleFunction(IWebElement elt);
private static void StaleElementHandleByID(By by, StaleFunction func )
{
int count = 0;
while (count < 4)
{
try
{
IWebElement yourSlipperyElement = Driver.FindElement(by);
func(yourSlipperyElement);
count = count + 4;
}
catch (StaleElementReferenceException e)
{
count = count + 1;
}
}
}
StaleElementHandleByID(By.Id("identDdl"),
delegate(IWebElement elt)
{
SelectElement select = new SelectElement(elt);
select.SelectByText(tosave.ItemEquipamentoCem.CodigoCne.ToString());
});
この場合、テストはまだロードされていないか、更新された要素を探しています。その結果、StaleElementException。簡単な解決策は、fluentWaitを追加することです。