Katalon 运行 测试套件文件夹中的所有测试套件
Katalon run all test suites on Test Suites folder
我是 Katalon 的新手。
我有一个看起来像这样的 Katalon 项目:
主要项目:
- foo1
- foo2
- 测试用例
- 测试套件
- file1.ts
- file2.ts
....
- file.ts
所以我想 运行 Jenkins 上带有 Docker 容器的测试套件文件夹中的所有测试文件。我尝试使用命令:
katalonc -projectPath=./ -browserType="Chrome" -retry=0 -statusDelay=15 -testSuitePath="Test Suites/"
但是我得到了错误:
Caused by: com.kms.katalon.execution.exception.InvalidConsoleArgumentException: Test suite 'Test Suites/' not found.
有什么想法吗?
您需要将希望在 Jenkins 中执行的测试套件添加到测试套件集合中:
并在命令中添加-testSuiteCollectionPath="Test Suites/test sute collection 1"
。
我是 Katalon 的新手。
我有一个看起来像这样的 Katalon 项目:
主要项目:
- foo1
- foo2
- 测试用例
- 测试套件
- file1.ts
- file2.ts
.... - file.ts
所以我想 运行 Jenkins 上带有 Docker 容器的测试套件文件夹中的所有测试文件。我尝试使用命令:
katalonc -projectPath=./ -browserType="Chrome" -retry=0 -statusDelay=15 -testSuitePath="Test Suites/"
但是我得到了错误:
Caused by: com.kms.katalon.execution.exception.InvalidConsoleArgumentException: Test suite 'Test Suites/' not found.
有什么想法吗?
您需要将希望在 Jenkins 中执行的测试套件添加到测试套件集合中:
并在命令中添加-testSuiteCollectionPath="Test Suites/test sute collection 1"
。