Re: how to collect results after distributed testing?

2009-01-16 Thread liza_dl
sebb-2-2 wrote: > > There was a bug in the collection of responses which meant that the > master JMeter sometimes shuts down before all the responses are > collected. [This has been fixed in the nightly builds]. > I've rebuild jmeter using r728228 nightly build, now appears an error when I try

Re: how to collect results after distributed testing?

2009-01-16 Thread liza_dl
sebb-2-2 wrote: > > > Or use non_GUI mode and merge the test results after the run has finished. > > Do you mean to start test separately on each machine? -- View this message in context: http://www.nabble.com/how-to-collect-results-after-distributed-testing--tp21497688p21500030.html Sen

how to collect results after distributed testing?

2009-01-16 Thread liza_dl
Hi! How are results collected when testing with one master machine and two slave machines? I've tried to run load testing with mode=Hold and mode=Standard. In the first case result file contains responces only from one of the machines, it seems that the first slave machine sends the result file

Re: distributive testing. Slave machines can't read from .properties file

2009-01-16 Thread liza_dl
gt;> from the same location as (on) the master. >> >> Regards, >> >> Adrian >> >> -Original Message- >> From: liza_dl [mailto:liza_sevasto...@mail.ru] >> Sent: 12 January 2009 15:14 >> To: jmeter-user@jakarta.apache.org >> Sub

distributive testing. Slave machines can't read from .properties file

2009-01-12 Thread liza_dl
Hi! I'm doing distributed testing, one master machine and two slave machines. Is it possible to run test plan from master machine in non-Gui mode? If yes, than here is my real question: Jmeter sends test plan to all slave machines. Does it also send .properties files? I've got a test.properties f

can't open results in jmeter

2008-11-07 Thread liza_dl
Jmeter can't open its own result file! I'm using only one Simple Data Writer with configuration: - Save as xml - Save label - Save request headers (xml) - Save latency - Save thread name - Save url - Save elapsed time - Save byte count - Save sample and error counts. I set 25 users, every of t

Re: jmeter.log file appearence question

2008-11-03 Thread liza_dl
sebb-2-2 wrote: > > > Try using a different application to look at the log file; newlines > are definitely added. > > > I've tried Kiwi Log Viewer, now every record is on a new line :) Thanks for the advice! -- View this message in context: http://www.nabble.com/jmeter.log-file-appearen

Re: how to transmit assertion result to if controller?

2008-11-03 Thread liza_dl
> RE: this name alredy exists > Template: $0$ > Match: 1 > Thanks, that works! -- View this message in context: http://www.nabble.com/how-to-transmit-assertion-result-to-if-controller--tp20243524p20298823.html Sent from the JMeter - User mailing list archive at Nabble.com.

jmeter.log file appearence question

2008-10-31 Thread liza_dl
Hi! Why in my jmeter.log file all records are put in one string? Here is an extract from jmeter.properties : # Default format: #log_format=%{time:/MM/dd HH:mm:ss} %5.5{priority} - %{category}: %{message} %{throwable} # \n is automatically added to the end of the string So, every record mus

Re: how to transmit assertion result to if controller?

2008-10-30 Thread liza_dl
It seems I've solved the problem: with a regexp find 'this name alredy exists' in the response, place it in a variable, use this variable in the If controller... New problem: can anybody help me with the regexp? I've got the following response: ... this name alredy exists ... -- View thi

xpath extractor 'stop words'

2008-10-30 Thread liza_dl
Hi To visit and check all site links I used xpath extractor, //a/@href as XPath query. To avoid visiting some links with words 'logout', 'login', 'javascript', '#' (I call them stop words) I used //a[not(contains(@href, 'logout')) and not(contains(@href, 'login')) and not(contains(@hr

how to transmit assertion result to if controller?

2008-10-30 Thread liza_dl
Hi everybody! I'm creating something like a digital book. All themes are stored as a list. To create the theme I need to fill in these fields of a form: name, author, content and submit them to the server. To check the uniqueness of the name of the theme I've added a response assertion to the h

jmeter checkbox questio

2008-10-23 Thread liza_dl
Hi! Does anybody know how to organize select or deselect of checkbox using Jmeter? I have the following html code: ... ... When the checkbox is selected class="noSelect" changes to class="Select" What parametrs should I send to this html page to make a checkbox activ