regex for jmeter

101 Views Asked by At

the jmeter still not exclude the .gif OR .png extension from record

1

There are 1 best solutions below

0
Dmitri T On BEST ANSWER

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