I am trying to execute below Selenium Web driver script, But I am getting org.openqa.selenium.ElementNotVisibleException: Element is not currently visible and so may n
Not sure what your requirement is. But, couple of things to keep in mind.
if you know for sure the element is not hidden then you can use the following wait for the element to be visible
new WebDriverWait(Driver, TimeSpan.FromSeconds(10)).Until(ExpectedConditions.ElementIsVisible("your selector");