How can I integrate Robotium test cases with Testlink - robotium

Is there any way to integrate Robotium test cases with Testlink?
I can see that we can create and execute Junit test cases in Testlink using Jenkins and Hudson. I am not sure if we can also manage instrumentation test cases on Testlink.
Please someone through light on this?

Related

Need a tool to migrate test cases from testRail to Xray(JIRA)

I need to migrate the existing test cases from testRail to Xray (Jira). Can anyone pls help me with any macros or tools.
Tried to migrate the existing test cases from testRail to Xray

Unable to integrate Cypress with testlink

Is there any way to integrate Cypress test cases with Testlink?
I think of a situation where when running the test, it created the suite test and the case test and updated the status of the testLink to for example passed (if cypress has run the entire test successfully)
Yes it's possible to integrate Cypress with Testlink Because Testlink has its own API and you would need to write your own plugin to integrate it though.
This is the path to the api: /lib/api/rest/v2 and Here are all the Rest endpoints: https://github.com/TestLinkOpenSourceTRMS/testlink-code/blob/testlink_1_9/lib/api/rest/v2/tlRestApi.class.php
then do a GET on http://localhost:3000/lib/api/rest/v2/whoAmI Good Luck

Associate automated tests Robotframework with test cases in TFS

I am working using TFS to create test case. I have a automated test written in Robotframework with Selenium2Library.
I'd like to be able to associate these tests with test cas in test. Is it possible to link the automated test cases with the test case in TFS, and if so, how is it done?
The web Test page does not support to run automatic tests associated with test cases in TFS.
You can achieve the same goals using the Build & Release features in Team Foundation Server (TFS). (https://www.visualstudio.com/en-us/docs/test/lab-management/use-build-or-rm-instead-of-lab-management). Simply integrate Selenium testing into a continuous integration/continuous delivery pipeline.
Instead of build, suggest you use a step in a release pipeline. Take a look at this question:How can i run automated selenium tests using TFS build 2015?
More detail steps about how to integrate with TFS please go through the official tutorials from MSDN: Get started with Selenium testing in a CD pipeline

How to integrate TestRail with Jenkins?

I am trying to integrate TestRail with Jenkins where I want to run some test cases from test rail which calls the test cases in jenkins, and then writes the result back to TestRail itself, or something similar to this.
I know there is an API for this, but so far I am not able to figure out how to go ahead with this API.
Any suggestions would be of great help.
There is a Jenkins plugin maintained by the Jenkins team at GitHub:
Integrate test results from Jenkins into TestRail. Upload your junit
test results to TestRail after every run.
The plugin only allows to populate TestRail with the test results, but maybe you can start from there.
I too am attempting to integrate TestRail with our Jenkins installation. This blog post is pretty good: https://qxf2.com/blog/reporting-to-testrail-using-python/
You will need a way to map each Jenkins test to the appropriate TestRail test-case id, Ex: C123.
After the Jenkins run, reconcile the test results with the mapping and POST to the TestRail API with the test_run_id, test-case id, and the test result status_id as defined in TestRail.

Which one is better for writing automated test cases, Behat-Mink Bundle or Sahi Recorder?

At present i am using Behat-Mink Bundle for performing automation testing via sahi.The other way to do Automation Testing is recording Test Cases using Sahi Recorder.So which method is better, Using Sahi Recorder or Behat-Mink Bundle?
Thanks for your time.