I'm writing some automated tests using Selenium in C# and I need to wait until a certain element is not in a Stale state. In java, I've once used something like ExpectedConditions.not(ExpectedConditions.stalenessOf(element)
,
but I haven't yet found a way to do this in C#.
Is there a workaround for this problem or does Selenium in .NET not have the "Not" property at all?