Jmeter CSV数据配置 | 从CSV表格传递特定数值

huangapple go评论52阅读模式
英文:

Jmeter CSV data config | pass particular valus from the csv sheet

问题

在JMeter中,是否有任何函数可以从CSV数据表中传递特定的值。

在CSV数据表中,第一列给出了手机号码,我使用参数化来调用这些值。

${手机号码}

在我的CSV数据表中,第一列给出了手机号码,我使用参数化在请求中传递这些值。如果有可用于修剪值的函数。

例如,在CSV数据表中,第一列的值是+911234567890

当我在请求中传递这些值时,不包括国家代码。

${手机号码} == 1234567890

英文:

In JMeter, if there’s any function to pass particular values from the CSV datasheet.

In the CSV datasheet first column gives the mobile number and I call the values using parameterization.

${mobile number}

In my CSV datasheet first column gives the mobile number and I pass the values on my request using the parameterization. if there are any functions available to trim the value.

Ex: in CSV datasheet first column value is +911234567890

When I pass the values in the request without a country code.

${mobile number} == 1234567890

答案1

得分: 0

如果CSV中的所有条目都使用印度国家代码+91,您可以使用__groovy()函数,如下所示:

${__groovy(vars.get('your-variable-from-csv').substring(3),)}

用真实的JMeter变量名称替换your-variable-from-csv,该名称来自CSV数据集配置

英文:

If all your entries in the CSV use India country code of +91 you can use __groovy() function like:

${__groovy(vars.get('your-variable-from-csv').substring(3),)}

Jmeter CSV数据配置 | 从CSV表格传递特定数值

Replace the your-variable-from-csv with the real JMeter Variable name from the CSV Data Set Config

huangapple
  • 本文由 发表于 2023年2月9日 02:27:25
  • 转载请务必保留本文链接:https://go.coder-hub.com/75390214.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定