Search found 23 matches

by tom1
Wed Oct 12, 2016 12:01 pm
Forum: TestLink 1.9
Topic: Import test step results
Replies: 4
Views: 7844

Re: Import test step results

I installed 1.9.15 and did some testing.
Import from the example xml worked fine!

A follow up question raises during testing this issue:
Is it possible to edit the test step results afterwards (like the test note)?
by tom1
Wed Sep 21, 2016 12:33 pm
Forum: TestLink 1.9
Topic: Import test step results
Replies: 4
Views: 7844

Re: Import test step results

I am using Testlink 1.19.14 (Padawan) This is the example I used: <?xml version="1.0" encoding="UTF-8"?> <!-- TestLink - www.testlink.org - xml to allow results import --> <results> <testcase external_id="TEST-42"> <result>p</result> <notes>test link rocks</notes> <test...
by tom1
Fri Sep 09, 2016 12:53 pm
Forum: TestLink 1.9
Topic: Import test step results
Replies: 4
Views: 7844

Import test step results

How can I import test results (from XML) including the results for each test step? I tried to export existing results, changed some values and imported it again. The overall result for the testcase including execution notes was used, but the single test step results were ignored. The import was ok w...
by tom1
Thu Nov 24, 2011 11:33 am
Forum: TestLink 1.9
Topic: [SOLVED] Can CustomField (Text Area) be greater than 255 ?
Replies: 5
Views: 6684

Re: Can CustomField (Text Area) be greater than 255 ?

I also looking for a solution to increase the size of the text area field.
TEXTAREA_MAX_SIZE in lib/functions/cfield_mgr.class.php is not used in 1.9.3.
Any ideas?
by tom1
Mon May 23, 2011 10:10 am
Forum: XML-RPC API
Topic: Remote Execution with Testlink 1.9.2
Replies: 9
Views: 18477

Re: Remote Execution with Testlink 1.9.2

Does the executeTestCase method provides a return value?
There appears a "Remote Execution Result Feedback" afterwards. Is it possible to provide some feedback to display?
by tom1
Fri May 20, 2011 7:53 am
Forum: XML-RPC API
Topic: Remote Execution with Testlink 1.9.2
Replies: 9
Views: 18477

Remote Execution with Testlink 1.9.2

Hi, I updated my Testlink version from 1.9.0 to 1.9.2. In 1.9.0 the remote execution only works with a "small" workaround like this: http://www.teamst.org/forum/viewtopic.php?f=11&t=3663 And now it works out of the box :D Here a short description: Activate API in config.inc.php: $tlCfg...
by tom1
Tue Feb 15, 2011 3:25 pm
Forum: TestLink 1.9
Topic: Step by Step Execution of a test case
Replies: 4
Views: 6431

Re: Step by Step Execution of a test case

I added already a feature request in Mantis:
http://mantis.testlink.org/view.php?id=4064
But it looks like that it did not find much favor.
by tom1
Wed Feb 09, 2011 4:23 pm
Forum: XML-RPC API
Topic: Get complete testcaseexternalid by API
Replies: 0
Views: 3630

Get complete testcaseexternalid by API

Is it possible to get the complete testcaseexternalid (project prefix + glue character + internal id) via the api?
I found only a way to get the internal id. It's a roundabout way to get the prefix via getProjects and then the id via getTestCase or getTestCaseIDByName.
by tom1
Wed Feb 09, 2011 11:29 am
Forum: XML-RPC API
Topic: how can custom fields be red from test link 1.9 through xm
Replies: 7
Views: 12166

Re: how can custom fields be red from test link 1.9 through

Is it possible to get the complete testcaseexternalid (project prefix + glue character + internal id) via the api?
I found only a way to get the internal id. It's a roundabout way to get the prefix via getProjects and then the id via getTestCase or getTestCaseIDByName.
by tom1
Tue Feb 08, 2011 10:18 am
Forum: XML-RPC API
Topic: how can custom fields be red from test link 1.9 through xm
Replies: 7
Views: 12166

Re: how can custom fields be red from test link 1.9 through

The testCaseExternalid is the test case id in TestLink GUI (project prefix + glue character + internal id).
e.g.: DEMO-1
by tom1
Mon Feb 07, 2011 12:07 pm
Forum: XML-RPC API
Topic: how can custom fields be red from test link 1.9 through xm
Replies: 7
Views: 12166

Re: how can custom fields be red from test link 1.9 through

Hi, here are some small examples in perl and python: #!/usr/bin/perl -w use RPC::XML::Client; use strict; my $devkey='YOURDEVKEY'; my $testlink_server = 'http://YOURSERVER/testlink/lib/api/xmlrpc.php'; my $xmlrpc_client = RPC::XML::Client->new($testlink_server); my $testcase_ext_id="XYZ-1"...
by tom1
Fri Jan 14, 2011 8:20 am
Forum: XML-RPC API
Topic: getTestCasesforTestSuite API function in Python
Replies: 2
Views: 5994

Re: getTestCasesforTestSuite API function in Python

Here is a small example in python. Insert your servername, api key and a valid testsuite id. (deep and details is optional) Tom #!/usr/bin/python import sys,xmlrpclib URL = "http://YOURSERVER/testlink/lib/api/xmlrpc.php" DEVKEY = "YOURKEY" conn = xmlrpclib.Server(URL) data = {} d...