RQMUrlUtility importing testcases
I created a testcase in RQM, and in the Test Case Design, I added simple table with a couple of columns
Using the RQMUrlUtility, I am able to export the testcase to an xml file. When I take this xml file and import it back again, the Test Case Design show all the code for the table, not the nice looking table created with the editor.
Has anyone else tried this before?
Thanks,
Mario
Using the RQMUrlUtility, I am able to export the testcase to an xml file. When I take this xml file and import it back again, the Test Case Design show all the code for the table, not the nice looking table created with the editor.
Has anyone else tried this before?
Thanks,
Mario
5 answers
Mario,
Did you create the original content in MS Word and then paste it into RQM? If so, you'll find a fix in the 2.0.0.1 release coming out on October 29th.
Regards,
John
Did you create the original content in MS Word and then paste it into RQM? If so, you'll find a fix in the 2.0.0.1 release coming out on October 29th.
Regards,
John
I created a testcase in RQM, and in the Test Case Design, I added simple table with a couple of columns
Using the RQMUrlUtility, I am able to export the testcase to an xml file. When I take this xml file and import it back again, the Test Case Design show all the code for the table, not the nice looking table created with the editor.
Has anyone else tried this before?
Thanks,
Mario
Mario,
Did you create the original content in MS Word and then paste it into RQM? If so, you'll find a fix in the 2.0.0.1 release coming out on October 29th.
Regards,
John
I created a testcase in RQM, and in the Test Case Design, I added simple table with a couple of columns
Using the RQMUrlUtility, I am able to export the testcase to an xml file. When I take this xml file and import it back again, the Test Case Design show all the code for the table, not the nice looking table created with the editor.
Has anyone else tried this before?
Thanks,
Mario
Thanks for the info John,
Actually, the table was created in RQM directly using the editor.
Hopefully, the fix applies to this as well :)
Looking forward to trying this out in 2.0.0.1
Mario
Hi,
I found the same problem using the RQMWordExcelImporter. The Importer tool replace all the "RTF" tags. If you tidy up the XML it does work.
My example worked by replacing:
<myns>&lt;table border=&quot;2&quot; style=&quot;width: 60%;&quot; summary=&quot;This is a table in Rich Text Editor&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;Note&lt;br/&gt;&lt;/td&gt;&lt;td&gt;Description&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;1&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;2&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;3&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;4&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;5&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;6&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;</myns>
With:
<myns><table><tbody><tr><td><br></td><td>Note<br></td><td>Description<br></td><td><br></td></tr><tr><td>1<br></td><td><br></td><td><br></td><td><br></td></tr><tr><td>2<br></td><td><br></td><td><br></td><td><br></td></tr><tr><td>3<br></td><td><br></td><td><br></td><td><br></td></tr><tr><td>4<br></td><td><br></td><td><br></td><td><br></td></tr><tr><td>5<br></td><td><br></td><td><br></td><td><br></td></tr><tr><td>6<br></td><td><br></td><td><br></td><td><br></td></tr></tbody></table></myns>
Hope this helps,
Simon
Thanks for the info John,
Actually, the table was created in RQM directly using the editor.
Hopefully, the fix applies to this as well :)
Looking forward to trying this out in 2.0.0.1
Mario
I found the same problem using the RQMWordExcelImporter. The Importer tool replace all the "RTF" tags. If you tidy up the XML it does work.
My example worked by replacing:
<myns>&lt;table border=&quot;2&quot; style=&quot;width: 60%;&quot; summary=&quot;This is a table in Rich Text Editor&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;Note&lt;br/&gt;&lt;/td&gt;&lt;td&gt;Description&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;1&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;2&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;3&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;4&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;5&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;6&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;</myns>
With:
<myns><table><tbody><tr><td><br></td><td>Note<br></td><td>Description<br></td><td><br></td></tr><tr><td>1<br></td><td><br></td><td><br></td><td><br></td></tr><tr><td>2<br></td><td><br></td><td><br></td><td><br></td></tr><tr><td>3<br></td><td><br></td><td><br></td><td><br></td></tr><tr><td>4<br></td><td><br></td><td><br></td><td><br></td></tr><tr><td>5<br></td><td><br></td><td><br></td><td><br></td></tr><tr><td>6<br></td><td><br></td><td><br></td><td><br></td></tr></tbody></table></myns>
Hope this helps,
Simon
Mario,
Did you create the original content in MS Word and then paste it into RQM? If so, you'll find a fix in the 2.0.0.1 release coming out on October 29th.
Regards,
John
I created a testcase in RQM, and in the Test Case Design, I added simple table with a couple of columns
Using the RQMUrlUtility, I am able to export the testcase to an xml file. When I take this xml file and import it back again, the Test Case Design show all the code for the table, not the nice looking table created with the editor.
Has anyone else tried this before?
Thanks,
Mario
Thanks for the info John,
Actually, the table was created in RQM directly using the editor.
Hopefully, the fix applies to this as well :)
Looking forward to trying this out in 2.0.0.1
Mario
Hey, even this forum editor removed some tags when I pasted. Hope you understand what I'm saying here. Simon
Thanks for the info John,
Actually, the table was created in RQM directly using the editor.
Hopefully, the fix applies to this as well :)
Looking forward to trying this out in 2.0.0.1
Mario
Hi,
I found the same problem using the RQMWordExcelImporter. The Importer tool replace all the "RTF" tags. If you tidy up the XML it does work.
My example worked by replacing:
<myns>&lt;table border=&quot;2&quot; style=&quot;width: 60%;&quot; summary=&quot;This is a table in Rich Text Editor&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;Note&lt;br/&gt;&lt;/td&gt;&lt;td&gt;Description&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;1&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;2&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;3&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;4&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;5&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;6&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;</myns>
With:
<myns><table><tbody><tr><td><br></td><td>Note<br></td><td>Description<br></td><td><br></td></tr><tr><td>1<br></td><td><br></td><td><br></td><td><br></td></tr><tr><td>2<br></td><td><br></td><td><br></td><td><br></td></tr><tr><td>3<br></td><td><br></td><td><br></td><td><br></td></tr><tr><td>4<br></td><td><br></td><td><br></td><td><br></td></tr><tr><td>5<br></td><td><br></td><td><br></td><td><br></td></tr><tr><td>6<br></td><td><br></td><td><br></td><td><br></td></tr></tbody></table></myns>
Hope this helps,
Simon
Mario,
Did you create the original content in MS Word and then paste it into RQM? If so, you'll find a fix in the 2.0.0.1 release coming out on October 29th.
Regards,
John
I created a testcase in RQM, and in the Test Case Design, I added simple table with a couple of columns
Using the RQMUrlUtility, I am able to export the testcase to an xml file. When I take this xml file and import it back again, the Test Case Design show all the code for the table, not the nice looking table created with the editor.
Has anyone else tried this before?
Thanks,
Mario
Thanks for the info John,
Actually, the table was created in RQM directly using the editor.
Hopefully, the fix applies to this as well :)
Looking forward to trying this out in 2.0.0.1
Mario