0

I need a pattern to exclude this url /XXX/XXX/UIDL?windowName=1 of recordings, i try with many patterns but none of them worked

https://i.stack.imgur.com/azqol.jpg

Ale Bufa
  • 13
  • 1
  • 3

1 Answers1

1

Basically all you need is to provide a Perl-5 style regular expression which will match this /XXX/XXX/UIDL?windowName=1 pattern via URL Patterns to Exclude input of the HTTP(S) Test Script Recorder

So you could use something like .*(UIDL\?windowName=1).* (question mark is one of meta-characters which needs to be escaped by backslash) and it will do the trick for you.

JMeter Exclude Domain from Recording

References:

Dmitri T
  • 159,985
  • 5
  • 83
  • 133