是否可以在xpath断言中使用jmeter变量?

时间:2014-08-08 15:36:14

标签: xpath jmeter

我在jmeter测试套件中使用xpath断言,但在我收到的响应中遇到处理动态内容的问题。有没有办法使用我在xpath断言中定义的jmeter变量?我试过这个,但它不起作用。

/response/body/locationReports/locationReport[@deviceHandle = ${deviceHandle}]

1 个答案:

答案 0 :(得分:4)

刚刚发现它可以通过在变量名称周围添加单引号来实现,就像这个

一样
/response/body/locationReports/locationReport[@deviceHandle = '${deviceHandle}']