how handle auto suggest in “from” and “destination” box for this website “https://www.goibibo.com/” in selenium

后端 未结 3 1769
感动是毒
感动是毒 2020-12-22 08:12

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

3条回答
  •  既然无缘
    2020-12-22 08:34

    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();
    

提交回复
热议问题