I am trying to click on a menu link but not have any luck. It always showing exception -
Exception in thread \"main\" org.openqa.selenium.WebDriverExc
I had the same problem and tried many solution but it didn't work.Lastly i saw selenium docs and found stalenessof
new WebDriverWait(driver, 10).until(ExpectedConditions.stalenessOf(findElement(By.xpath("element_path"))));
It should work now.