In JMeter, using a post processor Regular Expression Extractor, i want to extract the form's action attribute. What regular expression should i use?
Asked
Active
Viewed 486 times
1 Answers
0
You should not be using regular expression to parse HTML, go for XPath Extractor instead and use query like
//form/@action
See XPath Tutorial and Using the XPath Extractor in JMeter for more details.