Java .jar文件大小

时间:2016-07-27 19:12:12

标签: java selenium jar

我用selenium webdriver做了一个程序。 我在项目中使用了selenium-server-standalone-2.53.1.jarselenium-java-2.53.1.jar。 我使用selenium-server-standalone-2.53.1.jar作为

WebDriver driver = new FirefoxDriver();
WebDriverWait wait = new WebDriverWait(driver, 80);
wait.until(ExpectedConditions.elementToBeClickable(By.xpath(degisikkaydet)));`

我只对selenium-server-standalone-2.53.1使用wait.until()。如果我删除它,我不能使用wait.until(),但该jar文件会将程序的.jar大小增加20mb。有没有比将selenium-server-standalone-2.53.1包括在我的项目中更好的选择?

1 个答案:

答案 0 :(得分:0)

WebDriverWaitWaitExpectedConditions位于selenium-support包内,您可以从Maven central下载,并在您的项目中包含selenium-server-standalone-2.53.1

但是,我强烈建议您使用其中一个构建自动化系统设置项目 - Maven,如Selenium site,Gradle或其他任何内容所述。像这样的问题消失就是这些工具的好处。