作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我用名称定义了一个用户定义变量:
message_title: "Test searching by title message"
然后我需要运行一个测试用例,输入是上述变量的子字符串,例如:“search”或“title”。
我使用了一个用户参数并用名称定义了 2 个变量:
len : ${__strLen(${message_title})}
middle_search: ${__substring(${message_title}, 5, ${__intSum(${len},-5)})}
但是当我运行测试用例时它抛出错误:
51 错误 - jmeter.threads.JMeterThread:测试失败! java.lang.NumberFormatException:对于输入字符串:“${__strLen(${message_title})}....
如何获取用户定义变量的长度和子字符串?
谢谢,
最佳答案
对于这对我有用的长度,我将结果存储在 len 变量中:
${__strLen(${message_title},len)}
然后:
${__substring(${message_title},5,${__intSum(${len},-5)},)}
关于testing - 如何在 Jmeter 中获取字符串长度和 subtring 用户定义的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52849548/
我用名称定义了一个用户定义变量: message_title: "Test searching by title message" 然后我需要运行一个测试用例,输入是上述变量的子字符串,例如:“sea
我是一名优秀的程序员,十分优秀!