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
Asked
Active
Viewed 2,865 times
1 Answers
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.
References:

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