how handle auto suggest in \"from\" and \"destination\" box for this website \"https://www.goibibo.com/\" in selenium. please help
I tired using the basic method bu
Use below code it will work
Webelement ele=driver.findelement() Actions ob = new Actions(driver); ob.moveToElement(ele); ob.click(ele); Action action = ob.build(); action.perform();