我想从URL获取Sessiondatakey值,如何在JMeter中编写正则表达式?
https://localhost:9443/authenticationendpoint/consent.do?mandatoryClaims=0_Nick+Name& sessionDataKey = ef91eee8-b226-4640-bf56-82df2a03ce78&sp = travelocitySP1
我尝试使用下面的正则表达式,但是它提供了默认值。
sessionDataKey=(.+)
答案 0 :(得分:0)
您的sessionDataKey以&
结尾,因此将其添加到正则表达式中:
sessionDataKey=(.+)&
确保要检查的字段为URL
,模板为$1$
,匹配编号为1