7

我正在使用最新的 Chrome 和 Webdriver 2.33,但在使用IgnoreExceptionTypes. 在下面的代码中,webdriver 也会像我期望的那样等待,但它实际上不会忽略异常:

WebDriverWait wait = new WebDriverWait(driver, TimeSpan.FromSeconds(8));
wait.IgnoreExceptionTypes(
    typeof(WebDriverTimeoutException),
    typeof(NoSuchElementException)
);  
wait.Until(ExpectedConditions.ElementIsVisible(By.XPath(firstResultX)));

代码在 try/catch 中,我尝试将其移出 try/catch 并收到相同的问题。我不知道从这里去哪里,任何帮助将不胜感激。

4

2 回答 2

1

您可以使用 FluentWaits。

Wait<WebDriver> wait = new FluentWait<WebDriver>(getDriverInstance())
                .withTimeout(timeoutSeconds, TimeUnit.SECONDS)
                .pollingEvery(sleepMilliSeconds, TimeUnit.SECONDS)
                .ignoring(NoSuchElementException.class);

wait.until(<Your expected condition clause.>);

如果这不能解决您的问题,请告诉我。

于 2014-08-30T06:30:12.790 回答
0

对于 C# 不同的等待是 -

      ` //Implicit Wait - Once set it remains till the life of the session
        Driver.Manage().Timeouts().ImplicitWait = TimeSpan.FromSeconds(10);

        //Explicit Wait - Polling interval is 250ms
        //using OpenQA.Selenium.Support.UI; 
        WebDriverWait wait = new WebDriverWait(Driver, TimeSpan.FromSeconds(30));
        //this wait utility ignores no such element errors by default
        IWebElement webElement = wait.Until(e => e.FindElement(By.Id("value")));

        //Fluent wait - Polling interval is set by us
        WebDriverWait fluentWait = new WebDriverWait(Driver, TimeSpan.FromSeconds(30))
        {
            PollingInterval = TimeSpan.FromSeconds(2)
        };
        fluentWait.IgnoreExceptionTypes(typeof(AccessViolationException), typeof(NoSuchElementException));
        IWebElement element = wait.Until(e => e.FindElement(By.Id("value")));`
于 2021-03-30T10:35:24.507 回答