ContributionsMost RecentMost LikesSolutionsHow to acess to property in dataSource?I use dataSource and dataSource loop to extract data from excel.But I don't want to set property in the configuration grid manually,can I set the property in groovy script just like we use ' xmlholder and setNodeValue' in a soap request? Plus,if I use "testRunner.runTestStepByName("getExcel")"in the groovy(getExcel is the DataSource),it just extract the first row in the excel,how can i set the "max number of rows to get" to 0 by script.and how can i get the actually rows got in the datasource by script? Is there anyone can help me? many thanx Re: How to transport the value from the script to the request eviware support wrote: You could use the XPaths to the two nodes, since they would be different A simpler way would be to make the request as a separate test step, and use a property transfer to populate the values. /Nenad http://eviware.com Got it ,thanks.How to transport the value from the script to the requestthe request of the testStep requires two parameters,which are two Email Addresses. in the script I defined like: def Email="Jason@gmail.com"; def Email2='Mike@gmail.com"; def groovyUtils = new com.eviware.soapui.support.GroovyUtils( context ); def getXXXRequest = groovyUtils.getXmlHolder( 'getXXX#Request' ); getXXXRequest.setNodeValue("?",Email); getXXXRequest.setNodeValue("?",Email2); getXXXRequest.updatePropertyValue; testRunner.RunTestStepByName("getXXX"); I don't konw how to figure out the different path of the two setNodeValue Action,since their tag's name are the same like //v1:EmailAddress, is there a index can be used or something?