Want to Extract name and value from Response.
input type="hidden" name="IbkVkZ7Zhk8=" value="B7DDe0z5xEGnlxKhPTQccoYGyA3Xk3lwHPDfzH6kGoQGHnVt6QHYI93OjGmtaEjr"
I am using Regular expression Extractor as Below :
1.tokenName
input type="hidden" name="(.+?)=" value=""
2.tokenValue
input type="hidden" name="${tokenName}" value="(.+?)"
but it doesn't work for me.
input type="hidden" name="(.+?)=" value="(.+?)"
and the regex should give you two different matches, the first one is the tokenName and the second is the tokenValue. - cyber_rookie