Open
Description
Hello, I'm having this strange issue with my code. I set up a function to wait for element to be clickable, and it is working for some time. Winappdriver log is waiting for element to be clickable, repeatedly checking the element untill its clickable and clicks it, but when time comes for another element, winappdriver just shows value false (not clickable) and is not looking at it anymore. Then script just catches timeout exception.
WebDriverWait wait = new WebDriverWait(CAsession, TimeSpan.FromSeconds(60)); wait.Until(Conditions.ElementToBeClickable(GUIElement));
Any help would be appreciated.
EDIT: forgot to mention, that once I rebuild solution, function starts working again, and so on and on...