SoapUI提供了一種通用語法來動態地在SOAP Request中插入屬性。在他們documentation他們解釋如何訪問不同的性能主要取決於財產範圍:SOAPUI - SOAPRequest - 擴展屬性以訪問當前TestStep的name屬性
#Project# - references a Project property
#TestSuite# - references a TestSuite property in the containing TestSuite
#TestCase# - references a TestCase property in the containing TestCase
#MockService# - references a MockService property in the containing MockService
#Global# - references a global property (optional)
#System# - references a system property
#Env# - references a environment variable
[TestStep name]# - references a TestStep property within the current TestCase
我的問題是我想訪問當前步步測試的名稱然而文件說,訪問一步步測試性能所需的名稱...還有另一種方式可以做到這一點?例如#TestCase#TestStep#Name。我知道如何用groovy腳本實現這一點,但在我的情況下,我想直接將屬性放在SOAP請求上。
在此先感謝
這是很好的,不知道這種簡單的方式來獲得測試步驟名。謝謝。 – Rao