ドロップダウンボックスのオプションを選択する場合、いくつかの方法があります。私はいつも使用しました:
driver.findElement(By.id("selection")).sendKeys("Germany");
しかし、それは毎回うまくいきませんでした。別のオプションが選択される場合がありました。だから私は少しグーグルで調べて、毎回動作する次のコードを見つけました。
WebElement select = driver.findElement(By.id("selection"));
List<WebElement> options = select.findElements(By.tagName("option"));
for (WebElement option : options) {
if("Germany".equals(option.getText()))
option.click();
}
しかし、それは本当に本当に遅いです。多数のアイテムが含まれる長いリストがある場合、時間がかかりすぎます。だから私の質問は、毎回動作し、高速なソリューションはありますか?
これを試すことができます:
IWebElement dropDownListBox = driver.findElement(By.Id("selection"));
SelectElement clickThis = new SelectElement(dropDownListBox);
clickThis.SelectByText("Germany");
以下を試してください:
import org.openqa.Selenium.support.ui.Select;
Select droplist = new Select(driver.findElement(By.Id("selection")));
droplist.selectByVisibleText("Germany");
Selectヘルパークラスを試して、違いがあるかどうかを確認しますか?
String valueToSelect= "Germany";
WebElement select = driver.findElement(By.id("selection"));
Select dropDown = new Select(select);
String selected = dropDown.getFirstSelectedOption().getText();
if(selected.equals(valueToSelect)) {//do stuff already selected}
List<WebElement> Options = dropDown.getOptions();
for(WebElement option:Options){
if(option.getText().equals(valueToSelect)){
option.click();
}
}
なんらかの奇妙な理由で、webdriverのSelectElement
(バージョン2.25.1.0)は、firefoxdriver(Firefox 15)で正しく動作しません。ドロップダウンリストからオプションを選択しない場合があります。ただし、chromedriverで動作するようです... This はchromedriverへのリンクです... bin dirにドロップするだけです。
ドロップダウンリストからオプションを選択する例:
Idまたはcsspathまたはxpathまたは名前を使用して、ドロップダウンリストをクリックします。ここでidを使用しました。
driver.findElement(By.id("dropdownlistone")).click(); // To click on drop down list
driver.findElement(By.linkText("india")).click(); // To select a data from the drop down list.
以下に示すように、WebElementをSelect Objectにラップするだけです
Select dropdown = new Select(driver.findElement(By.id("identifier")));
これが完了したら、3つの方法で必要な値を選択できます。このようなHTMLファイルを考えます
<html>
<body>
<select id = "designation">
<option value = "MD">MD</option>
<option value = "prog"> Programmer </option>
<option value = "CEO"> CEO </option>
</option>
</select>
<body>
</html>
今ドロップダウンを識別するために
Select dropdown = new Select(driver.findElement(By.id("designation")));
そのオプションを選択するには、「プログラマー」と言います
dropdown.selectByVisibleText("Programmer ");
または
dropdown.selectByIndex(1);
または
dropdown.selectByValue("prog");
ハッピーコーディング:)
このツールを初めて使う人(私のように)を特別に達成する方法を見つけるのに苦労しなければなりません。
C#コード:
IWebElement ddl = ffDriver.FindElement(By.Id("ddlGoTo"));
OpenQA.Selenium.Support.UI.SelectElement clickthis = new OpenQA.Selenium.Support.UI.SelectElement(ddl);
clickthis.SelectByText("Your Text");
これが他の人を助けることを願っています!
select = driver.FindElement(By.CssSelector("select[uniq id']"));
selectElement = new SelectElement(select);
var optionList =
driver.FindElements(By.CssSelector("select[uniq id']>option"));
selectElement.SelectByText(optionList[GenerateRandomNumber(1, optionList.Count())].Text);
public static void mulptiTransfer(WebDriver driver, By dropdownID, String text, By to)
{
String valuetext = null;
WebElement element = locateElement(driver, dropdownID, 10);
Select select = new Select(element);
List<WebElement> options = element.findElements(By.tagName("option"));
for (WebElement value: options)
{
valuetext = value.getText();
if (valuetext.equalsIgnoreCase(text))
{
try
{
select.selectByVisibleText(valuetext);
locateElement(driver, to, 5).click();
break;
}
catch (Exception e)
{
System.out.println(valuetext + "Value not found in Dropdown to Select");
}
}
}
}