@Anita, you can handle hidden web elements by using JavaScript Executor in Selenium Webdriver. Javascript Executor lets you find the hidden elements as they don't identify elements from UI of the webpage, instead they identify the elements from the source code of the web page:
(JavascriptExecutor(driver)).executeScript("document.getElementsByClassName(ElementLocator).click();");