selenium 线程“main”中出现错误,无法初始化类

2ic8powd  于 2022-11-24  发布在  其他
关注(0)|答案(1)|浏览(137)

执行Rest Assured程序时出错
第一个
代码Maven Dependency

mefy6pfw

mefy6pfw1#

添加此依赖关系并删除所有其他rest assured依赖关系json-path已包含在rest assured依赖关系中

<dependency>
    <groupId>io.rest-assured</groupId>
    <artifactId>rest-assured</artifactId>
    <version>5.2.0</version>
    <scope>test</scope>
</dependency>

如果需要模式验证器,可以添加:

<!-- https://mvnrepository.com/artifact/io.rest-assured/json-schema-validator -->
<dependency>
    <groupId>io.rest-assured</groupId>
    <artifactId>json-schema-validator</artifactId>
    <version>5.2.0</version>
    <scope>test</scope>
</dependency>

请确保已正确安装JDK/JAVA_HOME环境变量。上述依赖项应适用于JDK 8+

相关问题