Is there a known issue with 6.0.2 RQM and importing content for custom manual test script attributes?
![]() Using v6.0.2, in RQM, in preparation for importing manual test scripts from WORD, created a new manual test script custom attribute called "externalComment". Created a new manual script template to include this custom attribute. Set the new template to be default. My script is in table form, with three columns, description, expected results and externalComment. Using the RQM RQMExcelWordImporter, generated the XML file without error. From within RQM, imported this XML file, again without error. I opened the newly created manual test script and all the data from description and expected results was present but there was no data in the externalComment column. The line in the configuration file is testscript.steps.customAttributes identifier="externalComments" name="externalComments" type=MEDIUM_STRING value=Table("Step #).D NOTE: the above line from the configuration file was based off the example given in the release notes. The "dots" needed to be removed to put the line in a valid XML format. Any thoughts? Has this been a problem with manual testscripts and custom attributes. |
2 answers
![]() Found that I had changed the name of the custom attribute after I created it. Originally created the attribute with the name "externalComment". Saved it then realized it wanted it to be pural. So edited the name of the attribute and resaved it as "externalComments". Apparently this put the attribute identifier out of sync with the attribute name, though the attribute identifier is not a visible value on the custom attribute interface. So my configuration file entry of: testscript.steps.customAttributes identifier="externalComments".name="externalComments" type="MEDIUM_STRING".value=Table("Step #).D did not populate my manual test script with any data. Changing the configuration file entry to be: testscript.steps.customAttributes identifier="externalComment".name="externalComments" type="MEDIUM_STRING".value=Table("Step #).D Now the export from WORD and import to RQM worked. |