When I am trying to execute below code its giving me exception as:-org.openqa.selenium.ElementNotVisibleException: element not visible
WebElement elem = newDriver.findElement(By.name("loginId"));
elem.get(0).clear();
elem.get(0).sendKeys("asd");
even though element is present.
For more details see the below image.
I am trying to access input box below account label but its giving me exception as element is not visible.
I already used Actions tag and JavascriptExecutor
Any suggestions.

