verifExportSnapshotsToExcel
verifExportSnapshotsToExcel(
g_sessionId
t_fileName
g_exportAll
)
=> t / nil
Description
Exports the snapshot to the specified MS Excel file.
Arguments
Value Returned
Examples
The following example starts a Verifier session with a cellview 'test/snapshots/verifier' and exports snapshots to an MS Excel file.
uid = verifOpenCellView("test" "snapshots" "verifier")
=> 0
Export the visible snapshots data with format to Excel file.
verifExportSnapshotsToExcel(uid "mySnapshots")
INFO (VERIFIER-10019): Beginning export of snapshots to Excel file 'mySnapshots.xlsx'...
=> t
INFO (VERIFIER-10020): Successfully exported snapshots to Excel file 'mySnapshots.xlsx'.
Export all the snapshots data with format to Excel file.
verifExportSnapshotsToExcel(uid "mySnapshots_all" t)
INFO (VERIFIER-10019): Beginning export of snapshots to Excel file 'mySnapshots.xlsx'...
=> t
INFO (VERIFIER-10020): Successfully exported snapshots to Excel file 'mySnapshots.xlsx'.
Related Topics
verifCompareImplementationsFromSnapshot
Return to top