以下代码在线程“main”org.openqa.selenium.StaleElementReferenceException: Element not found in the cache... error.
中出现异常时失败
为什么它不能在try块中捕获我的异常?
WebElement listbox = driver.findElement( By.id("ctl00_PlaceHolderMain_SiteDocumentUploadWizard_Wizard1_lsbCountryList"));
Select listboxSelect = new Select(listbox);
//the textbox on the right
WebElement textbox = driver.findElement(By.id("ctl00_PlaceHolderMain_SiteDocumentUploadWizard_Wizard1_lsbCountriesSelected"));
int attempts = 0;
while(textbox.getText() != Contry && attempts < 5)
{
attempts++;
//make your selection in the select list
listboxSelect.selectByVisibleText(Contry);
//click the add button( or use the double click action )
//addCountryButton.click();
action3.perform();
System.out.println("before the try");
//wait for the textbox to be populated
WebDriverWait wait = new WebDriverWait(driver, 10);
try
{
System.out.println("try no "+attempts);
wait.until(ExpectedConditions.textToBePresentInElement(By.id("ctl00_PlaceHolderMain_SiteDocumentUploadWizard_Wizard1_lsbCountriesSelected"), Contry));
}
catch (Exception e){
System.out.println(e.toString());
}catch (Error e){
System.out.println(e.toString());
}
}
异常的堆栈跟踪:
Exception in thread "main" org.openqa.selenium.StaleElementReferenceException: Element not found in the cache - perhaps the page has changed since it was looked up
Command duration or timeout: 1.11 seconds
For documentation on this error, please visit: http://seleniumhq.org/exceptions/stale_element_reference.html
Build info: version: '2.37.0', revision: 'a7c61cb', time: '2013-10-18 17:15:02'
System info: host: 'LCDKHQ087061', ip: '192.168.2.104', os.name: 'Windows 7', os.arch: 'x86', os.version: '6.1', java.version: '1.6.0_45'
Session ID: d0861e29-c67b-43ec-beb2-00c4bf29e38e
Driver info: org.openqa.selenium.firefox.FirefoxDriver
Capabilities [{platform=XP, acceptSslCerts=true, javascriptEnabled=true, browserName=firefox, rotatable=false, locationContextEnabled=true, version=25.0, cssSelectorsEnabled=true, databaseEnabled=true, handlesAlerts=true, browserConnectionEnabled=true, nativeEvents=true, webStorageEnabled=true, applicationCacheEnabled=true, takesScreenshot=true}]
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at org.openqa.selenium.remote.ErrorHandler.createThrowable(ErrorHandler.java:193)
at org.openqa.selenium.remote.ErrorHandler.throwIfResponseFailed(ErrorHandler.java:145)
at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:554)
at org.openqa.selenium.remote.RemoteWebElement.execute(RemoteWebElement.java:268)
at org.openqa.selenium.remote.RemoteWebElement.getText(RemoteWebElement.java:152)
at mytestpack.JavaExport.DocContrySiteRole(JavaExport.java:250)
at mytestpack.UseInformationArray.UseArray(UseInformationArray.java:24)
at mytestpack.mytestclass.main(mytestclass.java:33)
Caused by: org.openqa.selenium.remote.ErrorHandler$UnknownServerException: Element not found in the cache - perhaps the page has changed since it was looked up
Build info: version: '2.37.0', revision: 'a7c61cb', time: '2013-10-18 17:15:02'
System info: host: 'LCDKHQ087061', ip: '192.168.2.104', os.name: 'Windows 7', os.arch: 'x86', os.version: '6.1', java.version: '1.6.0_45'
Driver info: driver.version: unknown
at <anonymous class>.fxdriver.cache.getElementAt(resource://fxdriver/modules/web_element_cache.js:7615)
at <anonymous class>.Utils.getElementAt(file:///C:/Users/hlyl/AppData/Local/Temp/anonymous7115004136812534907webdriver-profile/extensions/fxdriver@googlecode.com/components/command_processor.js:7233)
at <anonymous class>.WebElement.getElementText(file:///C:/Users/hlyl/AppData/Local/Temp/anonymous7115004136812534907webdriver-profile/extensions/fxdriver@googlecode.com/components/command_processor.js:10292)
at <anonymous class>.DelayedCommand.prototype.executeInternal_/h(file:///C:/Users/hlyl/AppData/Local/Temp/anonymous7115004136812534907webdriver-profile/extensions/fxdriver@googlecode.com/components/command_processor.js:10844)
at <anonymous class>.fxdriver.Timer.prototype.setTimeout/<.notify(file:///C:/Users/hlyl/AppData/Local/Temp/anonymous7115004136812534907webdriver-profile/extensions/fxdriver@googlecode.com/components/command_processor.js:396)
答案 0 :(得分:1)
尝试在try catch
块中包含整个上述代码,因为似乎异常不会从包含System.out.println("try no "+attempts);
try
{
WebElement listbox = driver.findElement( By.id("ctl00_PlaceHolderMain_SiteDocumentUploadWizard_Wizard1_lsbCountryList"));
Select listboxSelect = new Select(listbox);
//the textbox on the right
WebElement textbox = driver.findElement(By.id("ctl00_PlaceHolderMain_SiteDocumentUploadWizard_Wizard1_lsbCountriesSelected"));
int attempts = 0;
while(textbox.getText() != Contry && attempts < 5)
{
attempts++;
//make your selection in the select list
listboxSelect.selectByVisibleText(Contry);
//click the add button( or use the double click action )
//addCountryButton.click();
action3.perform();
System.out.println("before the try");
//wait for the textbox to be populated
WebDriverWait wait = new WebDriverWait(driver, 10);
try
{
System.out.println("try no "+attempts);
wait.until(ExpectedConditions.textToBePresentInElement(By.id("ctl00_PlaceHolderMain_SiteDocumentUploadWizard_Wizard1_lsbCountriesSelected"), Contry));
}
catch (Exception e){
System.out.println(e.toString());
}catch (Error e){
System.out.println(e.toString());
}
}
catch (Exception e){
System.out.println(e.toString());
}catch (Error e){
System.out.println(e.toString());
}
} catch (Exception e){
System.out.println(e.toString());
}catch (Error e){
System.out.println(e.toString());
}
答案 1 :(得分:0)
有些例外只会继承Throwable
尝试抓住那个,看它是否有效。
答案 2 :(得分:0)
StaleElementReferenceException
必须是一个运行时异常,并且如果它被抛出那么就会被你的try / catch块捕获。
在代码中查找行(JavaExport.java:250
),并确保尝试将其捕获。
答案 3 :(得分:0)
由于这是selenium,您需要确保代码试图准确访问您认为它在DOM中访问的内容。
http://docs.seleniumhq.org/exceptions/stale_element_reference.jsp
很可能是正在抛出异常的textBox.getText,尽管没有行号这一点并不清楚。