TestLink-API-Python-client
TestLink-API-Python-client copied to clipboard
A Python client to use the TestLink API
Hello, I'm wondering if it is possible to update TestCase execution order for a TestPlan? I tried several methods addTestCaseToTestPlan (with or without overwrite), updateTestCase, updateTestCaseCustomFieldDesignValue without success. Do we...
I think there is a mistake here: https://github.com/lczub/TestLink-API-Python-client/blob/master/src/testlink/testlinkapigeneric.py#L677 It should say `notes` instead of `note`. After passing that parameter to the function it works, otherwise it does not complain but...
Hello, I use Robotframework as an automation tool and want to send my .XML results to testlink. I tried this 3 year old updater: https://github.com/Beanking77/Robot-Framework-Report-update-to-Testlink Unfortunately, despite following the instructions...
Here's code: def update_Status_TestCase(TestCaseName, Status): tl_helper = TestLinkHelper() myTestLink = tl_helper.connect(TestlinkAPIClient) DateExec = datetime.today().strftime('%Y-%m-%d %H:%M:%S') TestPlan = myTestLink.getTestPlanByName(Projeto, TestPlanName) TestPlanID = TestPlan[0]['id'] Test = myTestLink.getTestCaseIDByName(TestCaseName) TestCaseID = Test[0]['id'] TCExternalID =...
Run into error when following the usage docs: Ran these in shell (with actual params): ``` set TESTLINK_API_PYTHON_DEVKEY=[Users devKey generated by TestLink] set TESTLINK_API_PYTHON_SERVER_URL=http:///testlink/lib/api/xmlrpc.php ``` and `getTestCase` gives this error:...
Hi, I've been getting this error for a specific period of time. at times it works and I don't change anything and all of a sudden it gives me this...
Hi, Thanks for this library, it works great. However, I encounter this error while running "TestLinkExample.py" ``` Traceback (most recent call last): File "/home/elapfra/code/TestLink-API-Python-client/example/TestLinkExample.py", line 713, in response = myTestLink.copyTCnewVersion(newTestCaseID_B,...
issue #149 reports failing TestLinkExample running against testlink_1_9_20_fixed in sample line 713 - myTestLink.copyTCnewVersion() try to reproduce this with new build TL Server with testlink_1_9_20_fixed, using [testlink-pg-docker - build-and-run-testlink-1920fixed](https://github.com/lczub/testlink-pg-docker#build-and-run-testlink-1920fixed) lets...
Implement new 1.9.20-fixed api - getTestCaseRequirements related TL Mantis Task - [8715](http://mantis.testlink.org/view.php?id=8715): [API - XMLRPC] Add a method to retrieve all requirements linked to a given test case new api...
implement new 1.9.20-fixed api - getRequirement related TL Mantis Task - [9039](http://mantis.testlink.org/view.php?id=9039): [API - XMLRPC] Use the (XMLRPC) API to get requirements coverage matrix new api - getRequirement ``` /**...