ContributionsMost RecentMost LikesSolutionsNew version of SoapUIWhen can we expect a new version of Soapui?Re: Fill an array section in a requestThanks Ole.Fill an array section in a requestHello There, In the request form editor (soapui 2.0 beta 2) , you can by an array section click on the button add en fill in the fields. When you go to the XML you can see that the new fields is added. I don't know how i do that in a groovy/java script. Can you tell me how i do that in a groovy/java script? I hope that you under stand what i ment. Regards, R. Wiertz Furore.comRe: code for remove log window doesn't work anymore in version 1.7.6Is it still posible to create my own log window? Regards, Raymond Wiertzcode for remove log window doesn't work anymore in version 1.7.6Hello there, When i remove a log window i got the follow error: groovy.lang.MissingMethodException: No signature of method: com.eviware.soapui.support.log.InspectorLog4JMonitor.indexOfTab() is applicable for argument types: (java.lang.String) values: {"jetty log"} The code below did work in the version 1.7.5 I use the code below: def RemoveLogWindow( WindowName ) { def logArea = com.eviware.soapui.SoapUI.logMonitor; if ( logArea != null ) { // seach for logwindow def ix = logArea.indexOfTab( WindowName ); if ( ix > 0 ) { logArea.remove( ix ); } } } RemoveLogWindow( "jetty log" ); How can i resolve the problem. Regards, Raymond Wiertz The NetherlandsRe: Disable a test step from a groovy script.Ole, It works fine. Thanks. RaymondRe: Disable a test step from a groovy script.Hello Ole, Thank you for finding out the problem. If would appreciate it. regards, Raymond WiertzRe: Disable a test step from a groovy script.Hi Ole, I just made a simple test case. See attachment. Just 3 groovy test cases with log rules. Greets, RaymondRe: Disable a test step from a groovy script.Hello Ole, That doesn't work well. I got an error Thu Aug 09 14:11:36 CEST 2007:ERROR:java.lang.IndexOutOfBoundsException regards, RaymondDisable a test step from a groovy script.hello, Can you tell met how i can disable one or more test steps from a groovy script. I can see if a step is disabled by the script testRunner.getTestCase().getTestStepByName( "Download Jira-Attachments" ).isDisabled(); But now i want to enabled/disable steps by groovy script. Regards, Raymond Wiertz