ContributionsMost RecentMost LikesSolutionsRe: Call test step of another test case through Groovy It seems that you set the custom property as testCase label not testStep label. And are you sure custom property is called properly when you run the testStep. Did you check to run manually step by steps ? testStep should have the reference of that custom property. You can follow this in your groovy scipt - def project = context.testCase.testSuite.project def TestSuite = project.getTestSuiteByName("TestSuite_Name") def testCase1 = TestSuite.getTestCaseByName("Case 1") def testStep1 = testCase1.getTestStepByName("REST Step 1") def testStep2 = testCase1.getTestStepByName("REST Step 2") def testCase2 = TestSuite.getTestCaseByName("Case 2") def groovyStep = testCase2.getTestStepByName("Groovy Step 1") // To retrive the property - from testStep => In your case you don't need this. def customProperty = testStep1.getPropertyValue("UserID") // To retrive the property - from testCase; if you already have the custom property set and value is defined def customProperty = testCase1.getPropertyValue("UserID") // You have to set custome property to your testStep (I guess the problem appears here) // I don't know the testStep property name where the `userID` value will be set. so just change the name of this property testStep1.setPropertyValue("testStepProperty", customProperty) Execute groovyStep.run(testRunner, context) Hope this would work. Re: Groovy Script to send html report via email body It is important to know from where the ReadyAPI is executed and Report html file is generated. I want to mean if the execution and generation of report are handled by any CI tool like Jenkins/GitLab then it is easy to setup and send the report to dev or other team member. Re: SoapUI 5.4.0 XML tab don't display JSON content like 5.0.0 You can copy from the json tab as well. Do you want to copy the xml tags also ? As from the json tab the html code also appears. PS: Not sure did I get your requirement exactly or not. SoapUI Maven giving an old problem of soapui-mavein-plugin-5-1-3-not-working/td-p/99200 Hello, The problem is identified in the below link; though it is marked as "Solved" but it appears again and I am facing same issue. Problem Statement SoapUI-Open-Source/soapui-mavein-plugin-5-1-3-not-working I saw that there is a change in the repository in the recent (19th July, 2019); I guess that update was not properly executed. Change in SoapUI repository smartbear/soapui/soapui/ Here is my error logs - Execution test-report of goal com.smartbear.soapui:soapui-maven-plugin:5.5.0:test failed: Plugin com.smartbear.soapui:soapui-maven-plugin:5.5.0 or one of its dependencies could not be resolved: The following artifacts could not be resolved: xmlbeans:xbean:jar:fixed-2.4.0, jetty:jetty:jar:6.1.26, jetty:jetty-util:jar:6.1.26, commons-ssl:not-yet-commons-ssl:jar:0.3.11, json:json-lib:jar:2.2.2-jdk15, bouncycastle:bcprov-jdk15:jar:144, l2fprod:l2fprod-common-directorychooser:jar:7.3, com.btr:proxy-vole:jar:20131209: Could not find artifact xmlbeans:xbean:jar:fixed-2.4.0 in smartbear-sweden-plugin-repository (http://www.soapui.org/repository/maven2/) -> [Help 1] Can you joeljons please check this Thanks and Regards Re: soapui-mavein-plugin-5.1.3 not working? I saw there is a recent change in soapui maven repository. And due to that I am getting similar error Failed to execute goal com.smartbear.soapui:soapui-maven-plugin:5.3.0:test (api-report) on project project-api: Execution api-report of goal com.smartbear.soapui:soapui-maven-plugin:5.3.0:test failed: Plugin com.smartbear.soapui:soapui-maven-plugin:5.3.0 or one of its dependencies could not be resolved: The following artifacts could not be resolved: xmlbeans:xbean:jar:fixed-2.4.0, jetty:jetty:jar:6.1.26, jetty:jetty-util:jar:6.1.26, commons-ssl:not-yet-commons-ssl:jar:0.3.11, json:json-lib:jar:2.2.2-jdk15, bouncycastle:bcprov-jdk15:jar:144, l2fprod:l2fprod-common-directorychooser:jar:7.3, com.btr:proxy-vole:jar:20131209, javafx:jfxrt:jar:2.2: Could not find artifact xmlbeans:xbean:jar:fixed-2.4.0 in SmartBearPluginRepository (http://www.soapui.org/repository/maven2/) It is the same error while running mvn clean test -U. Can you please check it whether any update is missing or not !!! Thanks