jmeter 使用数据体从随机文件发送多个POST

jmp7cifd  于 2023-10-20  发布在  其他
关注(0)|答案(1)|浏览(125)

JMeter场景:

  • 目的:* 我需要发送一个POST HTTP请求(在同一时间的性能验证的几个请求,每一个是与单独的线程)使用的内容随机文件从选定的文件夹。
Steps: 

    a. read all Data at once from random file
    b. insert Data to Body Data of HTTP Request (format of body is bellow)
    c. send HTTP Request with separate thread

Protocol: https
Server: app1
HTTP Request: POST
Path: Web/TestResultsServices.asmx/GetTestResults

文件格式为 .txt,如有需要,可转换为 .csv**内容:(15行最多500行)

单体数据POST:(要求10行)

我试着用

  1. StringFromFile:结果:仅读取第一行

1.文件到字符串:结果:文件的所有行

问题:如何在指定的线程中使用it值,发送带有读取数据的POST并跳转到下一个文件(和下一个线程)

busg9geu

busg9geu1#

  • “同时发送多个请求”-同步定时器
  • “使用所选文件夹中随机文件的内容”-Directory Listing Config(可以使用JMeter Plugins Manager安装)
  • “从随机文件中一次性读取所有数据”- __FileToString()函数

相关问题