web-dev-qa-db-ja.com

セレンを使用してオートコンプリートテキストボックスからテキストを選択する方法

オートコンプリートテキストボックスにテキストを入力する必要があります。次に、そのオートコンプリートオプションからオプションを選択し、クリックする必要があります。

私は次のコードで試しました:

public static void main(String[] args) throws InterruptedException {
    // TODO Auto-generated method stub
    String textToSelect = "headlines today";

    WebDriver driver = new FirefoxDriver();
    driver.get("https://www.google.co.in/");
    Thread.sleep(2000);
    WebElement autoOptions= driver.findElement(By.id("lst-ib"));
    autoOptions.sendKeys("he");

    List<WebElement> optionsToSelect = driver.findElements(By.tagName("li"));

    for(WebElement option : optionsToSelect){
        System.out.println(option);
        if(option.getText().equals(textToSelect)) {
            System.out.println("Trying to select: "+textToSelect);
            option.click();
            break;
        }
    }
4
public static void main(String[] args) throws InterruptedException {
// TODO Auto-generated method stub
String textToSelect = "headlines today";

WebDriver driver = new FirefoxDriver();
driver.get("https://www.google.co.in/");
Thread.sleep(2000);
WebElement autoOptions= driver.findElement(By.id("lst-ib"));
autoOptions.sendKeys("he");

List<WebElement> optionsToSelect = driver.findElements(By.xpath("//div[@class='sbqs_c']"));

for(WebElement option : optionsToSelect){
    System.out.println(option);
    if(option.getText().equals(textToSelect)) {
        System.out.println("Trying to select: "+textToSelect);
        option.click();
        break;
    }
}
1

あなたはこのようにすることができます私は例としてグーグルホームページ自動提案を使用しました

public class AutoSelection {
    public static void main(String[] args) {
        // TODO Auto-generated method stub

        WebDriver driver = new FirefoxDriver();
        driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
        driver.get("http://www.google.com");

        driver.findElement(By.name("q")).sendKeys("mahatama gandhi");
        List<WebElement> autoSuggest = driver.findElements(By
            .xpath("//div[@class='sbqs_c']"));
        // verify the size of the list
        System.out
            .println("Size of the AutoSuggets is = " + autoSuggest.size());
        // print the auto suggest
        for (WebElement a : autoSuggest)
            System.out.println("Values are = " + a.getText());
        // suppose now you want to click on 3rd auto suggest then simply do like
        // this
        autoSuggest.get(2).click();
    }
}
1
eduliant
driverName.findElement(By.xpath("XPATH Location")).sendKeys("KeyNameYouWantToSearch" , Keys.TAB);
0

Java 8ストリームAPIを使用して、配列内のWeb要素をフィルタリングおよび収集できます。インデックスを使用するとクリックが簡単になります。

// 5つのオートコンプリートエントリリストを収集します

List<WebElement> list = driver.findElements(By.cssSelector("#ui-id-1 
li:nth-child(n)")).stream()
            .limit(5)
            .collect(Collectors.toList());

//これにより、オートコンプリートされたリストの最初の要素をクリックします

list.get(0).click();
0
Jemal Miftah