我正在从外部文件加载属性,并且正在加载所有属性,但现有属性不会从saopui中的属性中删除
def props = new Properties();
FileInputStream propFile = new FileInputStream("C:/Documents/SoAPUI/Test.properties")
props.load(propFile)
我尝试从groovy添加属性并且能够添加但无法读取请求中的值
//Adding property value
context.testCase.setPropertyValue("Testr12","test")
context.testCase.setPropertyValue("Testr13","EUR")
//添加无法在SOAPUI中的属性列表中看到的属性尝试使用多个选项读取请求但都失败
$ {Test#Testr12} $ {#Test#Testr12} $ {#TestCase1#Testr12} $ {TestCase1#Testr12}
//请提供答案帮助我
//手动创建属性并从外部文件
创建工作正常$ {测试#Testr12}
由于