【问题标题】:Selenium - NoClassDefFoundError: org/openqa/selenium/NoAlertPresentExceptionSelenium - NoClassDefFoundError: org/openqa/selenium/NoAlertPresentException
【发布时间】: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


    【解决方案1】:

    如果它在 Eclipse 中编译和运行,您将在项目中添加额外的 jar 文件。它看起来类似于:

    您需要将所有这些依赖项添加到您的类路径中。可以使用Including all the jars in a directory within the Java classpath 中描述的通配符。但是,如果您要独立运行代码,则需要在类路径中包含 Eclipse Java 构建路径的所有库。

    【讨论】:

    • 您好,我已经使用 --- Z:\TripPlanner\lib>java -cp .;junit-4.12.jar;hamcrest-core-1.3.jar;** 共享了所有 jar 的路径Z:\TripPlanner\lib*** org.junit.runner.JUnitCore "com.example.tests.TripPlannerJUnit" JUnit.
    • 我觉得应该是 Z:\TripPlanner\lib*
    • 嗨。是的,我刚刚提到像 Z:\TripPlanner\lib* 来加粗该字符串。无论如何,现在通过将方法 boolean isAlertPresent 设为私有来解决问题。但是,我现在收到此失败消息,为此我打开了另一个线程。 NoSuchSessionException:会话 ID 为空。调用 quit() 后使用 WebDriver?
    猜你喜欢
    • 2016-08-10
    • 2022-01-21
    • 1970-01-01
    • 1970-01-01
    • 2021-12-12
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2013-10-29
    相关资源
    最近更新 更多