アプリケーションを自動化するために Selenium 3.0 と firefox 48 を使用しています。しかし、firefox48 では、自動選択ドロップダウンが機能しません。
同じコードが IE と chrome で正常に動作しています。
これはブラウザの問題ですか、それとも私のコードの問題ですか?
Select sel = new Select(driver.findElement(By.xpath("//select[contains(@id,'BusinessUnit')]")));
wait.until(ExpectedConditions.visibilityOfElementLocated(By.id("ctl00_vmsContent_rdwBusinessUnit_C_selBusinessUnit")));
List<WebElement> list = sel.getOptions();
for (WebElement el : list)
{
System.out.println(el.getText());
sel.selectByIndex(2);
}