-1

In JMeter, using a post processor Regular Expression Extractor, i want to extract the form's action attribute. What regular expression should i use?

ZiggY
  • 59
  • 8

1 Answers1

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.

Community
  • 1
  • 1
Dmitri T
  • 140,090
  • 4
  • 71
  • 123