I am trying to login to "https://www.quora.com/" , It has login screen where I put my username and password , It always throws Element not visible, I have gone through all other answers on SO , none of them working.
I tried to click the element via Javascript and ScrollintoView , but no avail.
IWebElement uname = driver.FindElement(By.Name("email"));
((IJavaScriptExecutor)driver).ExecuteScript("arguments[0].click();", uname);
js.ExecuteScript("arguments[0].scrollIntoView()", uname);
js.ExecuteScript("arguments[0].click()", uname);
uname.SendKeys("[email protected]");
None of them working.