//File fichero=new File('C:/Users/Franciscog/Desktop/papageno1.xls') try{ Workbook wb = Workbook.getWorkbook(new File('C:/Users/Franciscog/Desktop/papageno1.xls')) Sheet sh1 = wb.getSheet(0) Cell a2 = sh1.getCell(0, 3) data1 = a2.getContents().trim() // log.info data1 for(i=0; i<14;i++)//Columnas { for(j=0; j<10;j++)//Fila { //log.info sh1.getCell(i, j).getContents().trim() testRunner.testCase.setPropertyValue( "NameOfCountry", sh1.getCell(i, j).getContents().trim() ) def testCaseProperty = testRunner.testCase.getPropertyValue( "NameOfCountry" ) log.info testCaseProperty } } }catch (Exception e) { log.info e.toString() }