可以告訴我如何獲取下拉列表中的所有選項,並使用selenium web驅動程序將其與單個選項進行比較。獲取下拉列表中的所有選項,並使用單個選項使用硒webdriver和java
我嘗試了這種代碼
Select dropdown = new Select(_driver.findElement(EventListOptionList));
List<WebElement> Options = dropdown.getOptions();
for (WebElement el : Options) {
if(el.getText.equals("event1")){
System.out.printLn("Option is present")
}
}
但它顯示的錯誤在這行
List<WebElement> Options = dropdown.getOptions();
和錯誤是「刪除類型參數」
你能提供HTML代碼片段嗎? – HemaSundar 2014-11-05 14:10:03
這是特定行或運行時錯誤的編譯時錯誤嗎? – shri046 2014-11-05 16:12:02