我想使用SOAPUI-Ggroovy属性进行数据驱动测试。我可以运行Once的脚本,但当我试图将这个内部类用作OOPS时,显示了一些错误。这可能是GroovyUtils范围的问题。请提供以下工作代码的解决方案。
以下代码替换xml值并运行请求。
def groovyUtils = new com.eviware.soapui.support.GroovyUtils(context)
def Req = groovyUtils.getXmlHolder("ConversionRate#Request")
def CurrenctFrom = 'USD'
de CurrencyTo = 'INR'
Req["//*:ConversionRate/*:FromCurrency"] = CurrenctFrom
Req.updateProperty()
Req["//*:ConversionRate/*:ToCurrency"] = CurrencyTo
Req.updateProperty()
def testStep = testRunner.testCase.testSteps['ConversionRate']
testStep.run(testRunner,context)`
在类中执行时,相同的代码不起作用。
test.log = log
def test1 = new test()
test1.runReq('USD','INR')
class test {
def static log
public void runReq(String CurrencyFrom , String CurrencyTo) {
def groovyUtils = new com.eviware.soapui.support.GroovyUtils(context)
def Req = groovyUtils.getXmlHolder("ConversionRate#Request")
Req["//*:ConversionRate/*:FromCurrency"] = CurrenctFrom
Req.updateProperty()
Req["//*:ConversionRate/*:ToCurrency"] = CurrencyTo
Req.updateProperty()
def testStep = testRunner.testCase.testSteps['ConversionRate']
testStep.run(testRunner,context)
}
}
WSDL-货币转换器(webservicex(
尝试以这种方式使用它,public void runReq(String CurrencyFrom , String CurrencyTo, testRunner, context){....}
并称之为
test1.runReq('USD','INR', testRunner, context)