Automate Export of Data from Rally - automation

Has anyone done automation of extract/exporting data from Rally. Right now I log into rally and export data manually. I want to be able to automate it.
Can you please help me by pointing out to the right links or maybe provide me with some sample code.
I want to learn so more the info the better.
Regards,
Subro

This repo contains code that will export attachments... perhaps it could be used as a starting/learning point:
https://github.com/RallyTools/Rally-Export-Attachments

Related

Need to export dataset from Collibra

I have collibra data governance set up in my company and I am trying to download dataset from it using API. I am not able find any tutorial/link which can explain how to use API to download files collibra using script. Any where I see it shows how to import into collibra and not export.
Any guidance/link will be highly appreciated.
In REST Core APIs, Output Module can be used to export as JSON, CSV, Excel and XML. Kindly refer this, https://developer.collibra.com/rest/rest-core-api/
And also follow Hitchhiker’s Guide to the Output Module documentation for more info on how to create TableViewConfig/ViewConfig. https://developer.collibra.com/rest/output-module/

Attach Screenshot in ALM Test Case step level using QuerySerge

can we execute Test Cases and attach screenshot in ALM/HPQC using QuerySerge Tool.
We are trying to implement automation and want to execute the Test case and attach screenshot using the tool. I am aware that we can connect the QC and QuerySerge. But not finding any useful info regarding my requirement of running the Test Case and attaching the screenshot. Please share any useful info or any links that will help me.
Thanks in advance.
Could you please be more specific on your query? Which version of QC are you using? Old HP or the new micro focus version?
On the MicroFocus site you have the complete userguide. For instance you can use different kind of scripting (SQL query or API).
I am using REST API and able to connect, update test results and attachment of whatever type.
Please check on the microfocus if you can find what is needed for your QuerySerge (not sure on that):
https://admhelp.microfocus.com/alm/en/15.5-15.5.1/online_help/Content/APIs/API_ALM_REST_Site_Admin.htm
Hope that help and clarify your question.
Have a nice day.

How to add the test data from a variable in the report or a screenshot when using multiple-cucumber-html-reporter

I am using this github project as a baseline to extend the capabilities in my existing testcafe project and to introduce BDD capabilities.
Also, I am trying multiple-cucumber-html-reporter reporter to beautify end reports
I am using the Map object to generate runtime test data for each scenario and facing issues in posting the test data from map objects and screenshots in the report to show the test data and UI error used at each step or collectively.
I don't know how to achieve this and looking for some help in the right direction or working example would be a great help.
The following shows cases of how to add data to the cucumber json report which I'm guessing your custom report pulls from https://github.com/cucumber/cucumber-js/blob/master/docs/support_files/attachments.md

Jedox - How to export SOAP Log into Excel file

I'm pretty new on Jedox, and I'm trying for internal use to export some specific "warning logs" (eg. "(Mapping missing)" ) into an excel/wss file.
And I don't how to do that...
Can you help me please.
Regards,
Usik
The easiest way to get these information is to use the Integrator in Jedox.
There you have the possibility to use a File Extract and then you can filter the information you are searching for.
After that it's possible to load these filtered information into a File.
The minimum steps you'll need are Connection -> Extract -> Transform -> Load.
Please take a look at the sample projects that are delivered with the Jedox software. In the example "sampleBiker", there are also file connections, extracts etc.
You can find more samples in:
<Install_path>\tomcat\webapps\etlserver\data\samples
I recommend to check the Jedox Knowledgebase.
The other way (and maybe more flexible way) would be to use, for example, a PHP macro inside of a Jedox Web report and read the log file you're trying to display.
If you've got a more specific idea what you'd like to do, please let me know and I'll try to give you an example how to do so.

[eclipse plugin]saving and loading information of a wizard on an XML file

I work on an eclipse plugin and I've created wizards with SWT / JFace.
In these wizards I need to record some information that has been specified by the users for future use. I saw an example that speaks about this part, I tried to do the same thing but I'm lost !
Behold the link
http://java-gui.info/Wiley-Professional.Java.Interfaces.with.SWT.JFace/12093/BBL0095.html
Is there anyone who can help me on this . What are the main steps that I must follow
thank you in advance
The link is right. Before exiting the wizard, save the data in dialog settings (got using getDialogSettings()) and on next launch restore getDialogSettings().get
May be you want to be more specific in the problem being faced.