我正在尝试模拟一个测试用例,我必须从多选框中选择多个选项。我可以使用选择来做到这一点。但是,一旦我实例化选择,我就会收到以下错误。
“无法实例化类型选择”
我的代码是:
import java.awt.List;
import java.util.ArrayList;
import junit.framework.Assert;
import org.apache.bcel.generic.Select;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.support.ui.ExpectedCondition;
import org.openqa.selenium.support.ui.WebDriverWait;
public class SeleniumFormTesting {
//piece of code to open the browser in firefox
Select selectBox = new Select(driver.findElement(By
.cssSelector("select#id_contact")));
//in above select statement the error comes
}
有人可以帮我解决这个问题吗