用Python做Loadrunner参数化脚本

目录

  • 简介
  • 效果
  • 代码

简介

用Python做Loadrunner参数化脚本,可以自动生成一个txt文件

效果

用Python做Loadrunner参数化脚本_第1张图片

代码

i=1
myFile = open("data.txt",mode='w',encoding='utf-8')
myFile.write("username,password,mailbox,phonenumber\n")

while i<=500:
  myFile.write("vu"+str(i)+",123456,mail"+str(i)+"@123.com,123456"+str(i)+"\n")
  i=i+1

你可能感兴趣的:(python,loadrunner,脚本语言,python)