Posts

Showing posts from January, 2013

Generating Random data in Excel

Sometimes we are required to use a list of names constructed from some chars followed by random numbers In order to use the parameter type FILE in LR parameter list with names constructed from chars followed by random numbers you might be require to develop a function to create names dynamically. Use the excel functions below to generate a random chars strings followed by random number generated between a given range, one for uppercase chars and the other for lowercase chars, as shown below. The prefix can be changed according to your needs, with simple adjustments. It’s a simple but effective way to create a list of names to suite our needs. Functions : Starting Letter Capital F followed by 6 small Letters =TEXT(RANDBETWEEN(97,122),)&CHAR(RANDBETWEEN(70,70))&CHAR(RANDBETWEEN(97,122))&CHAR(RANDBETWEEN(97,122))&CHAR(RANDBETWEEN(97,122))&CHAR(RANDBETWEEN(97,122))&CHAR(RANDBETWEEN(97,122))&CHAR(RANDBETWEEN(97,122)) Output:-

JMeter Learning

Image
My Learning with JMeter. This new year, i will come with some post on my learning with JMeter. This is the first inital post, which is starting point. Apache JMeter Apache JMeter   is Open Source Software, a 100% pure Java desktop application designed to load test client/server software (such as a  web application  ).  It may be used to test performance both on static and dynamic resources such as static files, Java Servlets, Perl scripts, CGI scripts, Java objects,  databases and queries  ,  FTP servers  , and more. JMeter can be used to simulate a heavy load on a server, network or object to test its strength or to analyze overall performance under different load types. JMeter can help you regression test your application by letting you create test scripts with assertions to validate that your application is returning the results you expect. For maximum flexibility, JMeter lets you create these assertions using regular expressions. Starting to Use: To Inst