我想使用JMETER运行python脚本,使用Jython编译我的python脚本,但是显示importError requsets,我不知道如何在Jmeter中安装此模块(软件包) enter image description here
答案 0 :(得分:0)
答案 1 :(得分:0)
像这样安装requests
模块:
\\location\\of\\jython\\jython -m pip install requests
在JSR223 Sampler中的脚本开头添加以下行:
import sys
sys.path.append('\\location\\of\\jython\\site-packages')
但是,上述方法更像是一种“解决方法”: