0
有沒有什麼方法可以在groovy script
之間運行Property Transfer
?兩者都在相同的測試案例中。在soapUI中的Groovy腳本和屬性傳輸
測試用例包含以下測試步驟:
- Groovy腳本
- 的soapUI請求(GetAccountNumber)
- 屬性傳送步驟中(從上面在下面的傳送的響應屬性的請求屬性步)
- soapUI請求(DownloadURL)
我需要確保的是,流程如下:
- Groovy的運行,並從文件中讀取號碼,並將其傳遞給GetAccountNumber。
- GetAccountNumber使用傳遞的值運行並生成響應。
- 此響應通過屬性轉移步驟傳遞給DownloadURL。
- DownloadURL以傳遞的值運行並生成輸出。
我所需要做的就是從groovy運行Property Transfer,因爲其他步驟可以從groovy運行。
它不與下面的代碼
def testStep_1 = testRunner.testCase.getTestStepByName("PropertyTransfer")
def tCase_1 = testRunner.testCase.testSuite.testCases["SubmitGenerateReport"]
def tStep_1 = tCase.testSteps["PropertyTransfer"]
tStep_1.run(testRunner, context)
當其他可以完成時,運行Property Transfer步驟的問題是什麼? – Rao
它沒有運行下面的代碼 'def testStep_1 = testRunner.testCase.getTestStepByName(「PropertyTransfer」); def tCase_1 = testRunner.testCase.testSuite.testCases [「SubmitGenerateReport」]; def tStep_1 = tCase.testSteps [「PropertyTransfer」]; tStep_1.run(testRunner,context);' –
@RikarnobBhattacharyya我編輯的問題添加您提交的代碼''提交' – albciff