My intention is to select a value from drop down (From field) in RedBus site. And I am using Xpath to select it.
I am using the following code:
WebDriver driver=new FirefoxDriver();
driver.get("http://www.redbus.in/");
driver.manage().timeouts().implicitlyWait(60, TimeUnit.SECONDS);
driver.findElement(By.id("DDLSource")).sendKeys("Chenn");
driver.manage().timeouts().implicitlyWait(50, TimeUnit.SECONDS);
driver.findElement(By.xpath(".//*[@id='123']")).click();
But it's not working. Only sending the values but not selecting.
Can anybody please help me out....