java - 为什么这没有捕获我的异常

标签 java selenium-webdriver

以下代码失败,线程“main”中出现异常org.openqa.selenium.StaleElementReferenceException:在缓存中找不到元素...错误。
为什么它没有在 try block 中捕获我的异常?

    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)

最佳答案

只需尝试将上面的整个代码包装在 try catch block 中,因为看起来 Exception 不会从包含 System.out.println("的包围的 try block 中抛出)尝试不使用“+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());
}

关于java - 为什么这没有捕获我的异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19971484/

相关文章:

firefox - java.lang.NullPointerException webdriver

C#.NET : Scraping dynamic (JS) websites

java - 如何捕获工具提示及其文本

java - 保存字典供以后在 android java 中阅读

java - 将对象列表转换为 Long 列表

java - 在java中的静态方法中访问非静态数据

ruby - Watir 的 Firefox 浏览器可以安装扩展吗?

java - Eclipse "quick type hierarchy"如图所示

Java - 扫描仪闲置

selenium-webdriver - 如何确认我使用的是正确的 chromedriver?