使用maven将selenium与cucumber集成时发出

问题描述 投票:0回答:1

我在基类(Java 步骤定义类)中遇到以下错误 无法解析 org.openqa.selenium.remote.RemoteWebdriver 类型
enter image description here

我尝试过提供类似问题的解决方案,但是,它们都不起作用

  • 尝试在 pom.xml 中添加 selenium 远程驱动程序类
  • 尝试清理 Maven 项目并更新项目
  • 尝试过新版本的 cucumber、selenium java 等

运行项目时,我面临以下问题,或者使用新版本更新时,我面临类未找到错误
enter image description here

添加pom.xml

    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>
      <groupId>SeleniumCucumber</groupId>
      <artifactId>WebAutomation101</artifactId>
      <version>0.0.1-SNAPSHOT</version>
      <dependencies>
        <dependency>
          <groupId>io.cucumber</groupId>
          <artifactId>cucumber-java</artifactId>
          <version>6.6.0</version>
        </dependency>
        <dependency>
            <groupId>org.seleniumhq.selenium</groupId>
            <artifactId>selenium-java</artifactId>
            <version>3.141.59</version>
        </dependency> 
        <dependency>
          <groupId>io.cucumber</groupId>
          <artifactId>cucumber-junit</artifactId>
          <version>6.6.0</version>
          <scope>test</scope>
        </dependency>
        <dependency>
                <groupId>junit</groupId>
                <artifactId>junit</artifactId>
                <version>4.12</version>
        </dependency>
      </dependencies>
    </project>

这个问题的根本原因是什么,有办法解决吗?

selenium maven cucumber classnotfoundexception selenium-remotedriver
1个回答
0
投票

从系统中删除现有的 .m2 文件后,我可以解决该问题

© www.soinside.com 2019 - 2024. All rights reserved.