cancel
Showing results for 
Search instead for 
Did you mean: 

Save the export parameter as an excel or notepad file in ecatt

Former Member
0 Kudos

Hello,

Que: I want to save the export parameter value to an excel or a notepad file in my ecatt script?

Importing of notepad file can be handled as an external file variant input from test data container.

But I am not able to export the value to a file.

Kindly help.

Accepted Solutions (1)

Accepted Solutions (1)

thomas_brutigam2
Active Participant
0 Kudos

Well, dont know if that is like VB-Script

but you could give it a try ...


set xclapp = createObject("Excel.Application")
set xclwbk = xclapp.Workbook.New
set xclsht = xclwbk.Sheets("Tabelle1")
xclsht.Cells(1,1).Value = [your Parameters go here!]
set xclsht = Nothing
xclwbk.close
set xclwbk = nothing
xclapp.quit
set xclapp = Nothing

Answers (0)