Expedia中的“自动降落”列表“从...出发”列表

时间:2019-03-21 15:31:06

标签: java selenium selenium-webdriver

我需要您的帮助,我正在尝试在www.Expedia.com的“飞行来源”下选择机场名称的自动下拉列表。我的代码成功运行,但未生成所需的输出。

使用这一行代码,我将密钥发送给“从...上飞”

driver.findElement(By.xpath("//input[@placeholder='City or airport']")).sendKeys("London");

然后我尝试使用此代码从自动下拉列表中捕获希思罗机场,但我的代码不是英国伦敦(LHR-希思罗机场),而是选择英国伦敦(STN-斯坦斯特德)。

        List<WebElement> list = driver.findElements((By.xpath("//div[@class='autocomplete-dropdown']")));
    for (int i=0;i<list.size();i++){
        System.out.println(list.get(i).getText());
        if(list.get(i).getText().contains("Heathrow")){
            list.get(i).click();
            break;
        }
    }

当前产出:英国伦敦(SEN-Southend) 预期输出:英国伦敦(LHR-希思罗机场)

下面是我要点击自动提示的代码

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;

import java.util.List;

public class expedia_search {
public static void main (String args[]) {
    // Set the property for webdriver.chrome.driver to be the location to your local download.
    System.setProperty("webdriver.chrome.driver", "/Users/vc/IdeaProjects/expedia_search/src/chromedriver");

    // Create new instance of ChromeDriver
    WebDriver driver = new ChromeDriver();

    // And now use this to visit expedia.com
    driver.get("http://www.expedia.com");

    // Find the text input element by its absolute path(xpath)
    WebElement element = driver.findElement(By.xpath("//*[@id=\"tab-flight-tab-hp\"]"));

    // Once flight tab selected click on it
    element.click();

    //type london on Expedia from tab
    driver.findElement(By.xpath("//input[@placeholder='City or airport']")).sendKeys("London");

    //capture auto suggestions from expedia from
    List<WebElement> list = driver.findElements((By.xpath("//div[@class='autocomplete-dropdown']")));
    for (int i=0;i<list.size();i++){
        System.out.println(list.get(i).getText());
        if(list.get(i).getText().contains("Heathrow")){
            list.get(i).click();
            break;
        }
      }

    }
 }

2 个答案:

答案 0 :(得分:0)

这是因为用于从下拉列表中选择值的xpath不正确。您使用的xpath包含下拉列表的全部内容,因此selenium在其中间单击,并且单击“ STN-Stansted”。您需要使用xpath作为下拉列表显示的列表。
 请使用我在下面提到的xpath:

List<WebElement> list = driver.findElements(By.xpath("//li[@class='results-item']"));

答案 1 :(得分:0)

欢迎来到SO。这是xpath和css,您可以使用它们直接选择机场,而无需使用循环。

CSS:

.autocomplete-dropdown a[data-value*='LTN']

xpath:    // div [@ class ='autocomplete-dropdown'] // a [包含(@ data-value,'Luton')]

硒的实现:

driver.findElement(By.xpath("//div[@class='autocomplete-dropdown']//a[contains(@data-value,'Luton')]")).click();

driver.findElement(By.cssSelector(".autocomplete-dropdown a[data-value*='Luton']")).click();