gpt4 book ai didi

selenium - 如何与 gradle 并行运行 Serenity Web 测试?

转载 作者:行者123 更新时间:2023-12-05 00:55:52 25 4
gpt4 key购买 nike

无法弄清楚如何与 gradle 并行运行 Serenity Web 测试。
Here是 maven + jenkins 的一个例子。但是我需要与 gradle 相同的东西。

最佳答案

您可以按照以下步骤执行此操作

第 1 步:创建套件文件

第二步:在gradle中输入如下任务代码

task runAParallelSuite(type: Test) {
def forks =2
exclude ('**/Library.java')
println "The Maximum parallel is $forks"
// uncomment maxParallelForks if you prefer to use the Gradle process forker
// which also requires a complete change of how the suite class works
maxParallelForks = forks
include '**/**TestSuite.class'
// testReportDir = file("${reporting.baseDir}/AParallelSuite")
// testResultsDir = file("${buildDir}/test-results/AParallelSuite")
// show standard out and standard error of the test JVM(s) on the console
testLogging.showStandardStreams = true
}

现在在 cmd 提示符下运行命令 'gradle clean runAParallelSuite aggregate'

关于selenium - 如何与 gradle 并行运行 Serenity Web 测试?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37351246/

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