Difference between revisions of "Synthesizing SVT Data"

From PeformIQ Upgrade
Jump to navigation Jump to search
(New page: =Overview= Preparing data for performance tests is a very important part of the preparation phase for a load test exercise. The following scripts provide simple examples of approaches to...)
 
Line 16: Line 16:
=Other Examples=
=Other Examples=


* [[Python - File operations]]


[[Category:LoadRunner]]
[[Category:LoadRunner]]
[[Category:Python]]
[[Category:Python]]

Revision as of 09:02, 16 April 2008

Overview

Preparing data for performance tests is a very important part of the preparation phase for a load test exercise. The following scripts provide simple examples of approaches to synthesize parameter data for use by the test scripts.

User Login IDs

#!/usr/bin/env python

print 'UserId'

for i in range(200):
   print "svt%03d" % i

Other Examples