srk
16 years agoNew Contributor
How to Export the data to excel Which is returned by Groovy Script
I wrote a Groovy Script Which takes the Values from Data Source and returned in Log Output. How to export this data to excel sheet using groovy script?
Groovy Script which prints output
def EMPLOYEENAME = context.expand( '${DataTest#EMPLOYEENAME}' )
def EMPID=context.expand('${DataTest#EMPID}')
log.info(EMPLOYEENAME)
log.info(EMPID)
I want to upload this EMPLOYEENAME, EMPID value to EXCEL. Can someone help me out?
Groovy Script which prints output
def EMPLOYEENAME = context.expand( '${DataTest#EMPLOYEENAME}' )
def EMPID=context.expand('${DataTest#EMPID}')
log.info(EMPLOYEENAME)
log.info(EMPID)
I want to upload this EMPLOYEENAME, EMPID value to EXCEL. Can someone help me out?