Re: Monitoring results

2018-09-17 Thread Deepak Shetty
Hi Since you are using Jmeter plugins , Im guessing you will find more answers on the plugins on their support forum rather than on the JMeter mailing list. JMeter listeners usually have a write results to file , it needs to be its own file if I remember correctly. i believe a common pattern is

Re: Monitoring results

2018-09-17 Thread Deepak Shetty
Oh and i believe JP@GC ==> Jmeter plugins @ Google code regards deepak On Mon, Sep 17, 2018 at 1:31 PM Deepak Shetty wrote: > Hi > Since you are using Jmeter plugins , Im guessing you will find more > answers on the plugins on their support forum rather than on the JMeter > mailing list. > >

Re: Delay Between Http Requests

2018-09-17 Thread Deepak Shetty
>https://jmeter.apache.org/usermanual/component_reference.html#timers You could also use the JSR223 timer to read the current time and determine how much delay to return. You do however need to figure out what you want to do when your previous sampler takes more than (in your example) 1 minute

Regular Expression

2018-09-17 Thread Puneet Varma
I have used the following regular expression for the value 2C94854D656354990165E824FA460175 with the regular expression value="(.+?)" /> it is not working. it is a check box, Id changes every time I am running it. Any help is greatly appreciate it.

Re: Regular Expression

2018-09-17 Thread Deepak Shetty
Hi name=" sg:cf:b"\s+checked="checked"\s+value="([^"]+)" should work - The reason you have to add the name is because there are likely other html elements. Its upto you if you want to retain the checked part (will break whenever your html changes slightly) v/s a more generic .+? which is

Re: Regular Expression

2018-09-17 Thread Puneet Varma
Thanks for the response. Below is what I have for the checkbox. On Mon, Sep 17, 2018 at 12:50 PM Deepak Shetty wrote: > Hi > you havent posted the text you are matching against so cant say why your > regex isnt working > Generally expressions like the above fail because . You have whitespace