【发布时间】:2019-07-03 10:31:38
【问题描述】:
NoClassDefFoundError: org/openqa/selenium/NoAlertPresentException: 我正在执行一段给出此错误的代码。这是使用 Selenium 在 Eclipse 上用 Junit 编写的。它通过 Eclipse 工作正常,但我需要在共享存储库上与团队共享它。它必须通过命令行工作,但由于此错误而失败。 Z:\TripPlanner\lib>java -cp .;junit-4.12.jar;hamcrest-core-1.3.jar;Z:\TripPlanner\lib* org.junit.runner.JUnitCore "com.example.tests.TripPlannerJUnit" JUnit 4.12 版 线程“main”中的异常 java.lang.NoClassDefFoundError: org/openqa/selenium/NoAlertPresentException at java.base/java.lang.Class.forName0(Native Method) 在 java.base/java.lang.Class.forName(Class.java:398) 在 org.junit.internal.Classes.getClass(Classes.java:16) 在 org.junit.runner.JUnitCommandLineParseResult.parseParameters(JUnitCommandLineParseResult.java:100) 在 org.junit.runner.JUnitCommandLineParseResult.parseArgs(JUnitCommandLineParseResult.java:50)在 org.junit.runner.JUnitCommandLineParseResult.parse(JUnitCommandLineParseResult.java:44) 在 org.junit.runner.JUnitCore.runMain(JUnitCore.java:72) 在 org.junit.runner.JUnitCore.main(JUnitCore.java:36) 引起:java.lang.ClassNotFoundException: org.openqa.selenium.NoAlertPresentException
我的代码如下:
package com.example.tests;
import static org.junit.Assert.fail;
import java.util.concurrent.TimeUnit;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.Alert;
import org.openqa.selenium.By;
import org.openqa.selenium.Keys;
import org.openqa.selenium.NoAlertPresentException;
import org.openqa.selenium.NoSuchElementException;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import io.github.bonigarcia.wdm.ChromeDriverManager;
public class TripPlannerJUnit {
private WebDriver driver;
private String baseUrl;
private boolean acceptNextAlert = true;
private StringBuffer verificationErrors = new StringBuffer();
@Before
public void setUp() throws Exception {
ChromeDriverManager.getInstance().setup();
driver = new ChromeDriver();
baseUrl = "https://www.google.com.au/.com/";
driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
}
@Test
public void testTripPlannerJUnit() throws Exception {
driver.get("https://transportnsw.info/trip#/");
driver.findElement(By.id("search-input-From")).click();
driver.findElement(By.id("search-input-From")).clear();
driver.findElement(By.id("search-input-From")).sendKeys("North Sydney Station");
driver.findElement(By.xpath("(.//*[normalize-space(text()) and normalize-space(.)='North Sydney Station'])[1]/following::li[1]")).click();
driver.findElement(By.id("search-input-To")).click();
driver.findElement(By.id("search-input-To")).clear();
driver.findElement(By.id("search-input-To")).sendKeys("Town Hall Station");
driver.findElement(By.xpath("(.//*[normalize-space(text()) and normalize-space(.)='Town Hall Station'])[1]/following::ul[1]")).click();
driver.findElement(By.id("search-button")).click();
driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
}
@After
public void tearDown() throws Exception {
driver.quit();
String verificationErrorString = verificationErrors.toString();
if (!"".equals(verificationErrorString)) {
fail(verificationErrorString);
}
driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
}
private boolean isElementPresent(By by) {
try {
driver.findElement(by);
return true;
} catch (NoSuchElementException e) {
return false;
}
}
public boolean isAlertPresent() {
try {
driver.switchTo().alert();
return true;
} catch (NoAlertPresentException e) {
return false;
}
}
private String closeAlertAndGetItsText() {
try {
Alert alert = driver.switchTo().alert();
String alertText = alert.getText();
if (acceptNextAlert) {
alert.accept();
} else {
alert.dismiss();
}
return alertText;
} finally {
acceptNextAlert = true;
}
}
}
【问题讨论】:
标签: selenium selenium-webdriver selenium-chromedriver