How to programmatically download an RQMS file for offline testcase execution?
I am successfully using curl to download and upload testplans, testcases, testscripts and executionresults. in RQM 5.0.2.
When browsing to the Testcase page, I have the option to select "Offline execution" and then I can download the RQMS file. How do I do this programmatically, without the browser?
The webpage "https://jazz.net/library/article/1376" does not discuss the download of offline execution packages.
Any help is appreciated.
When browsing to the Testcase page, I have the option to select "Offline execution" and then I can download the RQMS file. How do I do this programmatically, without the browser?
The webpage "https://jazz.net/library/article/1376" does not discuss the download of offline execution packages.
Any help is appreciated.
One answer
Hi Stefan,
The Reportable REST API doesn't support getting .rqms file. But you can do it by writing Selenium scripts. So the script should do a click on Run Offline option and that should give you the RQMS file
The Reportable REST API doesn't support getting .rqms file. But you can do it by writing Selenium scripts. So the script should do a click on Run Offline option and that should give you the RQMS file
Comments
The download will occur on a headless server, therefore Selenium is not an option (I found that actually Selenium does support running headless, but I could not find any docs for Windows). Thank you for the quick answer anyway. I will investigate the HTTP transactions that lead to the download and replay them with a programming language that I haven't decided on yet.