C# Selenium:使用 wait.Until 时无法捕获异常
C# Selenium: Can't catch exception when using wait.Until
在 try / catch 块中使用 wait.Until()
时,如果元素不存在,则会抛出 NoSuchElementException 异常。但是,当我尝试捕获异常时,我仍然得到错误。
try
{
wait.Until(el => el.FindElement(By.Id("courseTestItem")));
driver.Close();
driver.SwitchTo().Window(driver.WindowHandles.Last());
Console.WriteLine("Skipped: " + courses[0].Item1.Text + " (Has test)");
}
catch (OpenQA.Selenium.NoSuchElementException) { }
我什至尝试只使用 catch (Exception e) { }
,但仍然没有发现错误。
Image with the error
而不是使用 try / catch 使用:
if (wait.Until(el => el.FindElements(By.Id("filterText"))).Count > 0) { }
else if (wait.Until(el => el.FindElements(By.Id("sp-search-results-search"))).Count > 0) { }
else System.Threading.Thread.Sleep(5000);
这将检查是否找到了超过 0 个符合条件的元素,这意味着找到了该元素。
感谢 Reddit 上 u/Simmo7 的帮助。
在 try / catch 块中使用 wait.Until()
时,如果元素不存在,则会抛出 NoSuchElementException 异常。但是,当我尝试捕获异常时,我仍然得到错误。
try
{
wait.Until(el => el.FindElement(By.Id("courseTestItem")));
driver.Close();
driver.SwitchTo().Window(driver.WindowHandles.Last());
Console.WriteLine("Skipped: " + courses[0].Item1.Text + " (Has test)");
}
catch (OpenQA.Selenium.NoSuchElementException) { }
我什至尝试只使用 catch (Exception e) { }
,但仍然没有发现错误。
Image with the error
而不是使用 try / catch 使用:
if (wait.Until(el => el.FindElements(By.Id("filterText"))).Count > 0) { }
else if (wait.Until(el => el.FindElements(By.Id("sp-search-results-search"))).Count > 0) { }
else System.Threading.Thread.Sleep(5000);
这将检查是否找到了超过 0 个符合条件的元素,这意味着找到了该元素。
感谢 Reddit 上 u/Simmo7 的帮助。