2

我正在使用 Selenium WebDriver,它工作正常,今天如果我使用下面的代码或收到错误,我会超时Unable to find element with id == //*[@id='ctl00_ContentPlaceHolder1_AddControl1_txtName']

我尝试使用这个:

    public IWebElement GetElementId(string id)
    {
        //return Driver.FindElement(By.Id(id));
        Driver.Manage().Timeouts().ImplicitlyWait(TimeSpan.FromSeconds(TimeOut));
        return Driver.FindElement(By.Id(id));
    }

并尝试了这个:

public IWebElement GetElementId(string id)
{
    WebDriverWait wait = new WebDriverWait(driver, TimeSpan.FromSeconds(10));
    IWebElement category = wait.Until<IWebElement>((d) =>
    {
        return d.FindElement(By.Id(el_id));
    });
}

我仍然不知道如何避免超时或未找到元素错误

有什么帮助吗?

4

2 回答 2

5

尝试使用 FluentWait 类:

public WebElement fluentWait( final By locator ) {
    Wait<WebDriver> wait = new FluentWait<WebDriver>(driver)
        .withTimeout(30, TimeUnit.SECONDS)
        .pollingEvery(5, TimeUnit.SECONDS)
   .ignoring(NoSuchElementException.class, StaleElementReferenceException.class);

    // use a "custom" ExpectedCondition
    WebElement foo = wait.until( new Function<WebDriver, WebElement>() {
        public WebElement apply( WebDriver driver ) {
            return driver.findElement( locator );
        }
    });
    // usually use one of the built-in ExpectedCondtions
    // WebElement foo = wait.until(
    //     ExpectedConditions.visibilityOfElementLocated( locator );
    return  foo;
};

您可以在此处阅读有关流利等待的信息

或者,如果您找到正确的定位器,则不彻底检查。

希望这对你有帮助)

于 2012-09-06T15:40:17.613 回答
1

您正在使用 xpath,但在 findElement 中您正在使用 By.Id 将其更改为

By.xpath("//*[@id='ctl00_ContentPlaceHolder1_AddeCardControl1_txtName']")

                        OR

By.id("ctl00_ContentPlaceHolder1_AddeCardControl1_txtName")

如果它仍然显示超时错误,请尝试在 xpath 中指定元素名称,例如

//div[@id='element_id']

因为像这样指定

//*[@id='ctl00_ContentPlaceHolder1_AddeCardControl1_txtName']

搜索所有元素的 id 属性可能会花费一些时间,因此如果您指定特定元素,则搜索时间将最小化。

如果它不起作用,请检查您的 xpath 是否正确。

于 2012-09-01T07:21:30.490 回答