我试图等到某个元素存在后再继续,但是使用我当前正在使用的方法,即使在超时结束之前,它的throwing元素也不存在。
用法示例:
using OpenQA.Selenium;
using OpenQA.Selenium.Chrome;
using OpenQA.Selenium.Support.UI;
private static WebDriverWait wait = new WebDriverWait(driver, System.TimeSpan.FromSeconds(30)); // inside parent class (not method)
//public static void Method1()
wait.Until(driver => driver.FindElement(By.CssSelector("[foo=bar]")));
然后应等待30秒或直到元素出现,但它会立即引发未找到元素的异常...
答案 0 :(得分:0)
尝试一般使用ExpectedConditions类,尤其是使用ElementExists()函数,建议使用以下代码:
https://seleniumhq.github.io/selenium/docs/api/dotnet/html/M_OpenQA_Selenium_Support_UI_ExpectedConditions_ElementExists.htm
示例代码:
WebDriverWait wait = new WebDriverWait(driver, TimeSpan.FromSeconds(10));
IWebElement element = wait.Until(ExpectedConditions.ElementExists(By.CssSelector("[foo=bar]")));
示例输出:
更多信息: