C#Selenium - 在页面加载期间,隐式和显式等待不在web元素上工作。
在页面加载期间,Selenium隐式和显式等待是否适用于Web元素。有没有不同的方法来处理这个?
我正在做如下所示:
IWebElement flightsTable = new WebDriverWait(this.Driver, TimeSpan.FromSeconds(120))
.Until(ExpectedConditions.ElementExists(By.XPath(DisplayFlightsXpath)));
if (!flightsTable.Displayed)
{
throw new NoSuchWindowException("Flights are not loaded on the overview page1.");
}