(I\'ve looked at many other similar posts on SO and have unfortunately not been able to solve this problem, so here goes...)
I\'m using Selenium WebDriver (C# implementa
Use FindElement(By.CSSSelector("'CSSPath'")); If you have any CSS applied to the button, its more consistent alternatively write other multiple statements to find the element with alternative means such as ID,tag or so with the WebDriverWait Method
FindElement(By.CSSSelector("'CSSPath'"))
WebDriverWait