RQM Excel Importer
When attempt to link test case to test script with both on the same row. The test case links to all of the test scripts vs just the one on the row. What am I not doing thanks. Please
Excel:
A B
ScriptName | TestCase |
CP165_941_TS | CP165_941_TC |
CP166_941_TS | CP166_941_TC |
CP132_1120_TS | CP132_1120_TC |
CP133_1120_TS | CP133_1120_TC |
Script: testscript.XLSStartRow=2 testscript.XLSArtifactID=A testscript.title=A testscript.steps.type="execution" testscript.steps.description=A testscript.steps.title=A testscript.steps.name=A //testscript.XLSDelimeter=\n testcase.dc.title=B testcase.dc.name=B testcase.jzalm:owner=C testcase.dc:creator=C testcase.category term="Test Ready For Execution".value=D testcase.XLSArtifactID=B testcase.XLSLink=testscript |
|
One answer
If you use XLSLink keyword, it would link test case to all test script in the worksheet according to:
XLSLink
specifies that this artifact should be linked to all artifacts of the specified type within the worksheet.
In your case, you may want to consider using Link() keyword:
testcase.testscript=Link(?)
? should be external ID for test script.
Hope this helps.
thanks