ContributionsMost RecentMost LikesSolutionsAdd new test stepHi Can you guys consider adding one more step to the testCase something called "Description" to add any free text which will benefit everyone working on that test. It helps in the complex scenario like some testcases are disabled and dynamically enabled back through groovy scripts from multiple places/other projects. There is no way you can realize this behavior. Also there is no place to add these helpful tips for the user who has not worked on these tests. We faced number of situations when people unaware of the way of working, accidently breaking the testcases. Providing a place to add information something like "Read me" kind of information to add warnings/helpful tips will be a great addition. I know there is "Description" property on the test step (although there is nothing on testCase) level, anyone hardly notice what is written on that property in fact we never populate any text there.Re: [Resolved] Script LibraryThis has solved for me by not using global script library path rather using project level library path.Re: [Resolved] Proxy setting as None through GroovyThanks. Can you close this?Re: [Resolved] 407 Proxy Authentication Required errorI am closing this as we could crack this by updating soapUI-settings.xml file to change following flags to "false" <con:setting id="ProxySettings@autoProxy">false</con:setting><con:setting id="ProxySettings@enableProxy">false</con:setting> Later we included groovy code in the setup project to make proxy setting as "none".Re: [Resolved] Proxy setting as None through GroovyThat's brilliant ! SoapUI.updateProxyFromSettings(); Is above line necesary? SoapUI.settings.setString( ProxySettings.ENABLE_PROXY, "false") Merely having above line gives desired result. I am asking because we do apply lot of other settings as part of the setup however we do not call any update method.[Resolved] Proxy setting as None through GroovyHi How can I set Proxy setting as 'None' in the global settings through the Groovy code ? SoapUI.settings.setString( ProxySettings.AUTO_PROXY, 'None' ) I wrote above statement but I know it is not correct. I am not getting sufficient help from the API page. What should be the correct statement to make Proxy Setting to set to "None" ?[Resolved] 407 Proxy Authentication Required errorHi Support We are facing following issue from yesterday. Before that all tests were working OK. We run around 2000 tests in a headless manner however only few of them are failing due to following error. The same tests are passing in soapUI tool on local machine. 07:15:15,723 DEBUG [SoapUIMultiThreadedHttpConnectionManager$SoapUIDefaultClientConnection] Receiving response: HTTP/1.1 407 Proxy Authentication Required 07:15:15,736 DEBUG [HttpClientSupport$SoapUIHttpClient] Proxy requested authentication 07:15:15,743 DEBUG [HttpClientSupport$SoapUIHttpClient] Authorization challenge processed 07:15:15,744 DEBUG [HttpClientSupport$SoapUIHttpClient] Authentication scope: NTLM <any realm>@xxxxxxxxxxx:80 07:15:15,745 DEBUG [HttpClientSupport$SoapUIHttpClient] Credentials not found We do use proxy to connect to the internet in our organization however we never did any configurations in the global preferences in soapUI. We are using soapUI Pro 5.0.0 and headless tests are running on Linux machine. Could you help? Do you need any other information?Re: [Res] Adding new property value in all environmentsThis was really handy script Giscard. It saved my lot of time. Millions of thanks. Can you take this requirement as feature request?[Res] Adding new property value in all environmentsHi I have got number of composite projects. Each project has at least 20 various environments. I want to introduce one more project custom property. I want that property and it's assigned value get added to all the environments. 1. When I add custom property when active environment is "Default" it is only added to the Default environment and not in any other environment. 2. When I add custom property when active environment is "other than Default" the property is added in all the environments however it's value is populated only in active environment. Is there any way I can add property and value in all the environments in one step?Re: [Res] Populate Endpoint The Easiest WayHi Leo Go with the Environments feature which is available in soapUI Pro post 4.5. It's just matter of selecting pre-defined environment from the drop down. If you run your projects headless (command line) you can pass in this environment name as -E parameter. This way you can run any environment you want. Regards