Element is not Visible error even if my xpath is unique
//System.setProperty("webdriver.chrome.driver", "C://chromedriver.exe");
//WebDriver driver= new FirefoxDriver();
//WebDriver driver= new ChromeDriver();
driver.manage().window().maximize();
driver.get("https://www.goindigo.in/");
driver.findElement(By.linkText("One Way")).click();
driver.findElement(By.xpath("//button[@class='btn buttonGlbl btn-close button-trigger']")).click();
driver.manage().timeouts().implicitlyWait(5, TimeUnit.SECONDS);
driver.findElement(By.xpath("//div[@class='innertab-content one-way-tab-ctnt']//li[@class='city-dropdown destination-dropdown ps-destination-dropdown without_label']//div[@class='city-dropdown-list city-name-to']//ul//li[3]")).click();
}
}//