有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

java为什么不捕获我的异常

以下代码失败,线程“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)

共 (4) 个答案

  1. # 1 楼答案

    有些异常只继承Throwable请尝试捕获该异常,并查看它是否有效

  2. # 3 楼答案

    StaleElementReferenceException必须是一个运行时异常,如果在那里抛出,它将在try/catch块中被捕获

    在代码中查找行(JavaExport.java:250),并确保在那里尝试捕捉它

  3. # 4 楼答案

    只需尝试将上述全部代码包装在try catch块中,因为它似乎不会从包含System.out.println("try no "+attempts);的被包围的try块中抛出异常

    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());
    }