无法使用带有Java的Selenium2(Webdriver)启动IE浏览器
2022-08-31 17:21:57
我无法启动IE浏览器来运行用Java编写的硒自动测试。我使用的是 Windows 7 和 IE 9。以下是我的代码:
请找到附件。
public class GoogleNews {
private WebDriver driver;
private String baseUrl;
private StringBuffer verificationErrors = new StringBuffer();
ArrayList al = new ArrayList();
@Before
public void setUp() throws Exception {
//driver = new FirefoxDriver();
driver =new InternetExplorerDriver();
baseUrl = "https://news.google.co.in/";
}
@Test
public void testApple() throws Exception {
driver.get(baseUrl);
}
}