JMeter 3.2 在开始测试时删除 "file already exists" 的警告
JMeter 3.2 Remove warning of "file already exists" when starting a test
JMeter 3.2 版本出现了回归,
我在 GUI 模式下 运行 时开始收到新警告,
对于在侦听器中定义的每个文件,都会弹出警告 "file already exists"
如何删除此警告?
从 3.2 版本开始,您无法删除此警告。这不是回归,它是为了避免不小心覆盖以前的结果。
请在 :
提出增强功能
编辑:
您创建了:
已实现并将在 3.3 中可用。
引入了一个新的属性resultcollector.action_if_file_exists:
Used to control what happens when you start a test and
have listeners that could overwrite existing result files
可能的值:
- ASK:询问用户(打开弹出窗口的默认值)
- APPEND:将结果附加到现有文件
- DELETE : 删除现有文件并开始一个新文件
1 .- 转到启动 Jmeter 的 .bat 文件所在的文件夹。 (一般为bin文件夹)
2 .- 找到文件 jmeter.properties 并用文本编辑器打开。
3 .- 搜索#resultcollector.action_if_file_exists 属性 并取消注释(删除开头的#)
4.- 正如该参数上方的文档所说(在同一文件中),有 3 个可能的值:
#ASK : Ask user
#APPEND : Append results to existing file
#DELETE : Delete existing file and start a new file
例如,我更改为每次都覆盖文件 运行 我的测试是:
resultcollector.action_if_file_exists=DELETE
5.- 保存文件并重新启动 Jmetter
祝你好运!
JMeter 3.2 版本出现了回归,
我在 GUI 模式下 运行 时开始收到新警告,
对于在侦听器中定义的每个文件,都会弹出警告 "file already exists"
如何删除此警告?
从 3.2 版本开始,您无法删除此警告。这不是回归,它是为了避免不小心覆盖以前的结果。
请在 :
提出增强功能编辑:
您创建了:
已实现并将在 3.3 中可用。
引入了一个新的属性resultcollector.action_if_file_exists:
Used to control what happens when you start a test and have listeners that could overwrite existing result files
可能的值:
- ASK:询问用户(打开弹出窗口的默认值)
- APPEND:将结果附加到现有文件
- DELETE : 删除现有文件并开始一个新文件
1 .- 转到启动 Jmeter 的 .bat 文件所在的文件夹。 (一般为bin文件夹)
2 .- 找到文件 jmeter.properties 并用文本编辑器打开。
3 .- 搜索#resultcollector.action_if_file_exists 属性 并取消注释(删除开头的#)
4.- 正如该参数上方的文档所说(在同一文件中),有 3 个可能的值:
#ASK : Ask user
#APPEND : Append results to existing file
#DELETE : Delete existing file and start a new file
例如,我更改为每次都覆盖文件 运行 我的测试是:
resultcollector.action_if_file_exists=DELETE
5.- 保存文件并重新启动 Jmetter
祝你好运!