the jmeter still not exclude the .gif OR .png extension from record
Asked
Active
Viewed 96 times
1 Answers
0
JMeter's HTTP(S) Test Script Recorder provides "URL Patterns to Exclude" input so you can specify what you want to exclude there.
The tricky part is that the input accepts patterns - Perl5-style regular expressions
So if you want to exclude .gif and .png files from being recorded add the following line to aforementioned input:
.*\.(gif|png)
You might also be interested in Excluding Certain Domains from the Load Test

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