As we use action class for usually Click event. Somehow I am getting exception on each action class usage. It throws StaleElementReference exception on every action method, Not working for single instance.
Element does not able to click while Debugging also. When I replaced it by simple Click() method, It worked fine. But, I can't use click method based on some other exception dependency.
What could went wrong,
using OpenQA.Selenium.Interactions;
Actions action = new Actions(driver);
action.MoveToElement(WebElement).Click().Perform();
Am I missing something ?