我有一个jmeter正则表达式提取器的问题。我正在使用magento jmeter压力测试。https://github.com/magento/magento-performance-toolkit/tree/master/1.14
问题在下一部分。当我输入类别url和输入设置时,jmeter会给我下一个错误:
Assertion error: false
Assertion failure: true
Assertion failure message: Response was null这是正则表达式提取器:
<a href="http://${host}${base_path}(index.php/)?([a-z0-9-]+)${url_suffix}" class="level这如果来自响应断言:
^[a-z0-9-]+$url示例:http://web.stresstest.com/index.php/my-class.html
发布于 2015-10-05 02:34:44
您得到的错误是由于Null响应引起的,这意味着您没有得到可检查的响应。
您可以显示采样器的详细信息,并在查看结果树中显示请求和响应吗?
https://stackoverflow.com/questions/32926649
复制相似问题