はい、ステップがGroovy Script
のステップでWsdl、REST、Jdbc、HTTP、Groovyなどの特定のタイプであるかどうかを確認することができます。
以下のスクリプトを同じものにしてください。
import com.eviware.soapui.impl.wsdl.teststeps.WsdlTestRequestStep
import com.eviware.soapui.impl.wsdl.teststeps.RestTestRequestStep
import com.eviware.soapui.impl.wsdl.teststeps.JdbcRequestTestStep
import com.eviware.soapui.impl.wsdl.teststeps.HttpTestRequestStep
//....other stuff
//Initialise variable step before using it.
if (step instanceof WsdlTestRequestStep) {
log.info "Found a request step of Wsdl/Soap type"
//do the stuff you wanted
} else if (step instanceof RestTestRequestStep) {
log.info "Found a request step of Rest type"
//do the stuff you wanted
} else if (step instanceof JdbcRequestTestStep) {
log.info "Found a request step of jdbc type "
//Do the stuff you wanted
} else if (step instanceof HttpTestRequestStep) {
log.info "Found a request step of http type "
//do the stuff for http
}
出典
2016-08-19 06:42:05
Rao