jmeter 如何解决以下错误-ERROR:子进程错误:测试运行程序选择(JUnitTester)失败,返回代码为1

lbsnaicq  于 2022-11-09  发布在  其他
关注(0)|答案(1)|浏览(136)

当我使用Taurus运行selenium脚本并希望在JMX中进行转换时,出现错误-

10:55:54 ERROR: Child Process Error: Test runner sel (JUnitTester) has failed with retcode 1

        10:55:54 ERROR: JUnitTester STDERR:
        May 02, 2022 10:55:50 AM com.blazemeter.taurus.junit.CustomRunner main
        INFO: Starting: [C:\Users\sss\2022-05-02_10-55-36.435651\runner.properties]
        Exception in thread "main" com.blazemeter.taurus.junit.exception.CustomRunnerException: Nothing to test
                at com.blazemeter.taurus.junit.CustomRunner.main(CustomRunner.java:54)

它是如何解决的?

slwdgvem

slwdgvem1#

这意味着Taurus JUnit Executor在某个地方出现了故障,请检查Artifacts Directory中的日志,并在那里查找与Java/JUnit相关的错误。
最有可能的是,JUnit执行程序无法检测到任何要运行的测试用例,如果不查看完整的日志和自动化代码,就不可能确定根本原因是什么。
要知道,你可以使用另一种不涉及金牛座的方法,即。
1.启动BlazeMeter Proxy Recorder
1.将测试配置为使用上述记录器作为代理
1.从IDE或控制台运行测试

  1. BlazeMeter代理记录器将捕获请求并将其转换为.jmx文件(您也可以将其导出为“SmartJMX”,并自动检测和关联动态参数)

相关问题