如何使用 http 请求采样器 Jmeter 发送音频文件?
How to send audio file with http request sampler Jmeter?
我正在寻找一个选项,以便我可以使用 http 请求采样器发送音频文件,而无需粘贴音频文件中的内容(使脚本变重)。
如果切换到 HTTP Request sampler you will be able to provide path to the file for uploading along with its MIME type 的 "File Upload" 选项卡和关联的参数名称。
这样您的测试计划将只包含文件的路径,而不是文件的内容,因此 .jmx 脚本的大小不会增加。
构建文件上传请求的最简单方法是使用 JMeter 的 HTTP(S) Test Script Recorder, just make sure you copy the file(s) to "bin" folder of your JMeter installation so JMeter could capture the request and build the relevant HTTP Request sampler configuration. See Recording File Uploads with JMeter 文章记录它以获取更多详细信息。
__FileToString()
我们可以使用 __FileToString(File_path,Encoding_type) 方法。
我正在寻找一个选项,以便我可以使用 http 请求采样器发送音频文件,而无需粘贴音频文件中的内容(使脚本变重)。
如果切换到 HTTP Request sampler you will be able to provide path to the file for uploading along with its MIME type 的 "File Upload" 选项卡和关联的参数名称。
这样您的测试计划将只包含文件的路径,而不是文件的内容,因此 .jmx 脚本的大小不会增加。
构建文件上传请求的最简单方法是使用 JMeter 的 HTTP(S) Test Script Recorder, just make sure you copy the file(s) to "bin" folder of your JMeter installation so JMeter could capture the request and build the relevant HTTP Request sampler configuration. See Recording File Uploads with JMeter 文章记录它以获取更多详细信息。
__FileToString()
我们可以使用 __FileToString(File_path,Encoding_type) 方法。