> Hi every one, > > I'm new to Jmeter and trying to use Jmeter for my thesis test. I have the > following questions that I would be grateful if you could help me: > I have some web applications that I want to feed them some data and see > their reaction. I have a dataset that the data are in two forms: > wget --post-data "var1=value1&var2=value2&..." http://.../page.jsp > wget http://.../page.jsp?var1=value1&var2=value2&... > > To execute these commands from JMeter you can use OS Processor Sampler
> 1.The database is huge do I have to feed all the parameter values to the > related pages or is there an easier way to do that? > > Add a CSV Data Set Config to your Test Plan. Unless you implement a DB DataSet Config to load data directly from a Database (what I surely don't recommend), you can't use data from Database in JMeter. To load a huge amount of threads in JMeter you'll need to distribute your test. JMeter Agent/Server can extract data from a file, when using CSV Data Set Config. If you could extract data from your DB and split them into several files then each file created should be used by one JMeter Agent/Server. > 2. I have heard that we can see the pages in Jmeter just as we able to see > them in a browser. Is that right? How can this happen? > > The View Results Tree Listener has the options "HTML" and "HTML (download resources)" but it'll not show the page as it is in a browser, because JMeter does not execute Javascript from pages. > Regards > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > >
