3

項目を選択できないドロップダウン リストがあります。リスト内のすべての項目をループして目的の項目を見つけることができますが、click() で項目が選択されません。

これがコードです。誰でも助けることができますか?

driver.findElement(By.id("components-multi-select")).findElement(By.className("icon")).click();  
driver.findElement(By.id("components-suggestions"));

List<WebElement> componentList = driver.findElements(By.className("aui-list-item"));
for (WebElement component : componentList){
    System.out.println(component.getText());
    if (component.getText().contains(newComponent)){
        component.click();
        break;
    }
    else{
        System.out.println("not equal");
    }

コンポーネント ドロップダウン リストの HTML コードを次に示します。

<div class="field-group aui-field-componentspicker frother-control-renderer" >
<label for="components">Component/s</label>

<div class="ajs-multi-select-placeholder textarea long-field"></div>

<select class="select  hidden " id="components" multiple="multiple" name="components" size="5" data-remove-null-options="true">
  <option value="-1">
    Unknown
  </option>
  <option selected="selected" title="Component 1  - A test component" value="10240">
    Component 1
  </option>
  <option title="Component 2  - " value="10242">
    Component 2
  </option>
  <option title="Lee 2 " value="10371">
    Lee 2
  </option>
  <option title="Roy " value="10370">
    Roy
  </option>
  <option title="Test Documentation " value="10241">
    Test Documentation
  </option>
</select>
4

4 に答える 4

3
Select comboBox = new Select(webDriver
      .findElementById(comboBoxId));
comboBox.selectByVisibleText(optionText); 
于 2011-04-11T05:45:07.143 に答える
1

これまでに見たことがあると思いますが、チュートリアルでは、次のようにオプションを選択する例を示しています。

WebElement select = driver.findElement(By.xpath("//select"));
List<WebElement> allOptions = select.findElements(By.tagName("option"));
for (WebElement option : allOptions) {
    System.out.println(String.format("Value is: %s", option.getValue()));
    option.setSelected();
}

したがって、クリックを呼び出す代わりに、setSelected メソッドを呼び出す必要があります。

また、使用できます

Select select = new Select(driver.findElement(By.xpath("//select")));
select.deselectAll();
select.selectByVisibleText("Edam");

詳細はこちら: http://seleniumhq.org/docs/09_webdriver.html

オプションのリストを持ついくつかのhtmlを投稿したため、私はまだあなたの質問に混乱していますが、あなたのコードでは、htmlに存在しないクラス名で要素を検索しています.おそらく、ある種のドロップダウンメニューをクリックしようとしているだけです.セレクトボックスオプションではありません..

于 2011-01-13T00:03:42.227 に答える
0

最初に要素を見つけてselectから、その要素を反復処理する必要optionがあります

WebElement selectElement = driver.findElement(By.id("components"));

List<WebElement> componentList = selectElement.findElements(By.tagName("option"));
for (WebElement component : componentList){
    System.out.println(component.getText());
    if (component.getText().contains(newComponent)){
        component.click();
        break;
    }
    else{
        System.out.println("not equal");
    }
}
于 2010-12-08T14:09:09.360 に答える
-1

何らかの目的で onselect イベントをトリガーしようとしている場合は、sendkeys("\t) を使用できます。つまり、要素からのタブ移動をシミュレートできます。

于 2011-12-12T12:16:29.160 に答える