Reputation: 13
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
Upvotes: 0
Views: 3282
Reputation: 168002
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.
References:
Upvotes: 1