gpt4 book ai didi

java - 使用 selenium 进行 Maven 范围测试

转载 作者:行者123 更新时间:2023-11-30 01:43:17 25 4
gpt4 key购买 nike

当我们使用范围作为 selenium 项目的 pom.xml 文件中的某些依赖项的测试时,有什么区别。示例:之间的差异

<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>3.141.59</version>
<scope>test</scope>
</dependency>

并且

<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>3.141.59</version>
</dependency>

最佳答案

默认范围是编译

此作用域在编译时将依赖项添加到项目中,并且在您创建具有依赖项(或类似依赖项)的 JAR 时也会将其导出

test 范围仅添加测试源的依赖项(例如,大多数情况下,单元测试/位于 src/test 中)。它只能从测试源访问,并且不能导出(导出到测试 JAR 除外)

如果您只需要在项目的测试代码中使用selenium,我建议使用test范围。

关于java - 使用 selenium 进行 Maven 范围测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59165422/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com