I'm trying to exprt a simple table to csv, reduced the report to column headers and table fields only, but the output is somewhat odd:
- the column headers in csv are the names of the TestBoxes
- the rows contain fields for each fieldname and each value, looks altogether like this:
nameCaptionTextBox,valueCaptionTextBox,nameDataTextBox,valueDataTextBox
Name,Value,WebServiceModule.MpdConfigFilePath,
Name,Value,MaximumThreadCount,120
Name,Value,DeviceModule.QueueMaxAge,02:00:00
Name,Value,SvlDebugModule.Debug,false
thats what I would expect:
Name,Value,
WebServiceModule.MpdConfigFilePath,
MaximumThreadCount,120
DeviceModule.QueueMaxAge,02:00:00
SvlDebugModule.Debug,false
Any ideas what went wrong, or is this by design?
- the column headers in csv are the names of the TestBoxes
- the rows contain fields for each fieldname and each value, looks altogether like this:
nameCaptionTextBox,valueCaptionTextBox,nameDataTextBox,valueDataTextBox
Name,Value,WebServiceModule.MpdConfigFilePath,
Name,Value,MaximumThreadCount,120
Name,Value,DeviceModule.QueueMaxAge,02:00:00
Name,Value,SvlDebugModule.Debug,false
thats what I would expect:
Name,Value,
WebServiceModule.MpdConfigFilePath,
MaximumThreadCount,120
DeviceModule.QueueMaxAge,02:00:00
SvlDebugModule.Debug,false
Any ideas what went wrong, or is this by design?