金牛座:属性错误 - 'NoneType' 对象没有属性 'get'
Taurus: Attribute Error - 'NoneType' object has no attribute 'get'
我不断收到一条错误消息:
11:50:51 ERROR: AttributeError: 'NoneType' object has no attribute 'get'
这是我写的代码:
---
execution:
concurrency: 10
ramp-up: 1m
hold-for: 2m
scenario:
script: PerformanceTestPlan.jmx
concurrency: 10
ramp-up: 1m
hold-for: 2m
scenario:
script: ProcessorTestPlan.jmx
我想你应该去Taurus Support Forum问金牛座相关的问题,这里的讨论是面向JMeter的。
关于你的问题,语法不是很正确,应该是这样的:
---
execution:
- concurrency: 10
ramp-up: 1m
hold-for: 2m
scenario:
script: PerformanceTestPlan.jmx
- concurrency: 10
ramp-up: 1m
hold-for: 2m
scenario:
script: ProcessorTestPlan.jmx
破折号和缩进 非常 重要,任何缺失或多余的空格都可以 运行 您的测试。
有关通过 Taurus 组合多个测试的更多示例,请参阅 Taurus - Working with Multiple JMeter Tests。
我不断收到一条错误消息:
11:50:51 ERROR: AttributeError: 'NoneType' object has no attribute 'get'
这是我写的代码:
---
execution:
concurrency: 10
ramp-up: 1m
hold-for: 2m
scenario:
script: PerformanceTestPlan.jmx
concurrency: 10
ramp-up: 1m
hold-for: 2m
scenario:
script: ProcessorTestPlan.jmx
我想你应该去Taurus Support Forum问金牛座相关的问题,这里的讨论是面向JMeter的。
关于你的问题,语法不是很正确,应该是这样的:
---
execution:
- concurrency: 10
ramp-up: 1m
hold-for: 2m
scenario:
script: PerformanceTestPlan.jmx
- concurrency: 10
ramp-up: 1m
hold-for: 2m
scenario:
script: ProcessorTestPlan.jmx
破折号和缩进 非常 重要,任何缺失或多余的空格都可以 运行 您的测试。
有关通过 Taurus 组合多个测试的更多示例,请参阅 Taurus - Working with Multiple JMeter Tests。