In the code below, I attempt to wait until an element is visible:
var wait = new WebDriverWait(Driver.Instance, TimeSpan.FromSeconds(10)); wait.Until(ExpectedCon
You can use driver.FindElements for access to non-existing items.
driver.FindElements
wait.Until(d => d.FindElements(By.Id("processing")).Count == 0);