ContributionsMost RecentMost LikesSolutionsRe: AzureDevops integration with SOAPUI opensource I parsed testrunner.bat -sDemoTestSuite -r -f "C:\Program Files\SmartBear\SoapUI-5.6.0\bin" ProjectFolder\REST-DemoProject-soapui-project.xml to invoke the project solution in command line task . Re: AzureDevops integration with SOAPUI opensource I tried building through command line task as you suggested and is unsuccessful . I could find task that support SOAPUI pro and ReadyAPI . What kind of task can we make use to build/execute soapui os ,any valid solution ? or CI/CD is not possible for for SOAPui opensource . ? Re: AzureDevops integration with SOAPUI opensource Yes , I have a simple solution AzureDevops integration with SOAPUI opensource Hi , Is it possible to integrate opensource soap UI with AzureDevops ? If yes ,can anyone share the steps involved to implement a successful CI/CD. Re: How to use "CryptoJS" through groovy scripting in SoapUI Thanks Prathap , I already referred and tried the solution mentioned in this post , unfortunately , it still throws the same error . How to use "CryptoJS" through groovy scripting in SoapUI I am using the code to generate hash key in SoapUi open source : def authHash = CryptoJS.enc.Base64.stringify(CryptoJS.HmacSHA256(CryptoJS.enc.Utf8.parse(stringToSign), CryptoJS.enc.Base64.parse(testRunner.testCase.testSuite.getPropertyValue("SignKey")))); Its throwing the below error : groovy.lang.missingPropertyException:No such property : CryptoJS for class . How to handle this issue .