-3

我在基类(Java Step Defination Class)中遇到以下错误无法解析类型 org.openqa.selenium.remote.RemoteWebdriver
在此处输入图像描述

我已经尝试过提供类似问题的解决方案,但是,它们都没有工作

  • 尝试在 pom.xml 中添加 selenium 远程驱动程序类
  • 尝试清理 maven 项目并更新项目
  • 尝试使用新版本的黄瓜、硒 java 和其他

在运行项目时,我面临以下问题或在更新新版本时,我面临类未找到错误
在此处输入图像描述

添加 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>

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

4

1 回答 1

0

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

于 2020-09-09T15:51:23.483 回答