ContributionsMost RecentMost LikesSolutionsSoapUI headless on Jenkins pod - swap from floating license to fixed. How? I have readyAPI installed in Jenkins pod. I was using floating license and now I got fixed (to avoid expiration) and now I want to swap those. How do I that? I have file soapUI-license-.........key Re: SoapUI hide password in reports In the begging of the command I have added: #!/bin/bash +x Then deleted all AppenderRef's from ReadyAPI-2.5.0\bin\soapui-log4j.xml Then in teh end of command added: 2>/dev/null This way I don't see any output in log (console). But I could not hide password in JUnit reports when tests fail. Re: SoapUI hide password in reports Thank you for the reply. My readyAPI software is installed on pod in Jenkins, and jenkins is as a service in redhat openshift. So I am not able to open readyAPI and work with UI. But maybe after the tests/job I could run groovie script, so it goes through all reports and replaces all passwords with empty strings :) Re: SoapUI on Jenkins with global variables (auth) This exactly what I did, just did not deleted the post. It works as you said. Thanks a lot. But then next question follows - how do I hide password from logs and reports? After tests runs I see that password is printed to console and inside reports. I cannot let it be there. Help please :) SoapUI hide password in reports After run soapUI tests, I see there are reports on it (junit html) and content contains usernames and password used. They are used as global parameters. I start tests from command line and pass parameters as -Gusername=value and I noticed this value also appears in report. How do I hide password form reports? SolvedSoapUI on Jenkins with global variables (auth) Hello, I have project for soapUI that contains global variables for username and password. ${#Global#username} Now I have setup to run tests on Jenkins, but it fails to authentication error. I need somehow to pass those global parameters. I have set Jenkins job configuration, enable "This build is parameterized" and typed Name same as my variable username and value for it. But it did not work, test failed, because I see username is empty while trying to call web service. Re: Run SoapUI tests on Jenkins taken from Github What do you mean by that? Could you give more details (example) on your solution please? :) Run SoapUI tests on Jenkins taken from Github I am trying to run SoapUI project/tests on Jenkins. I have installed Jenkins plugin, followed those steps: https://support.smartbear.com/readyapi/docs/integrations/jenkins.html But how do I set source/project file from gitHub? What do I put in "Path to testrunner" and "Path to SoapUI Pro project" ? Path to testrunner - Specifies the fully-qualified path to the runner file (testrunner.bat or testrunner.sh). By default, you can find it in the <ReadyAPI installation>/bin directory. Path to SoapUI Pro project - Specifies the fully-qualified path to the SoapUI Pro project you want to run. I know there is field for "Repository URL", so should I have clean repo just for one .xml (project) file? And that is it? But what about Path to testrunner and Path to SoapUI Pro project ? Solved