使用通过maven下载的Internet Explorer驱动程序

时间:2017-09-21 09:44:24

标签: java maven selenium

当我指定iedriverserver或任何其他浏览器驱动程序的路径时,我必须使用系统属性进行设置。

这是我的代码:

System.setProperty("webdriver.ie.driver","Driver path");

如果我是通过maven下载iedriver,有没有办法找到它的路径并将其放入system.setproperty()

1 个答案:

答案 0 :(得分:0)

当您使用POM时,无需指定罐子的路径.... POM会自动为您完成。

如果不使用maven,请下载ieServer并将其传递给驱动程序路径

使用此

 String driverPath = "IE driver path";
System.setProperty("webdriver.ie.driver", driverPath+"IEDriverServer.exe");
Webdriver driver = new InternetExplorerDriver();
driver.manage().window().maximize();