Search code examples
urljmeterexclusionpath

Jmeter-How to exclude specific url of recording?


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.sstatic.net/azqol.jpg


Solution

  • 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: