lczub / TestLink-API-Python-client

A Python client to use the TestLink API
105 stars 63 forks source link

Can i get notes of each steps after executing the test case? #117

Closed chihuen closed 5 years ago

chihuen commented 5 years ago

Can i get notes of each steps after executing the test case?

lczub commented 5 years ago

Hello chihuem,

As I understand the TL Server XMLRPC Api xmlrpc.class.php, two api methods getExecutionSet() and getLastExecutionResult() exist, which returns excution notes. But in both cases, just for the test case, not for a single steps.

 * @return mixed $resultInfo
 *         if execution found
 *         array that contains a map with these keys:
 *         id (execution id),build_id,tester_id,execution_ts,
 *         status,testplan_id,tcversion_id,tcversion_number,
 *         execution_type,notes.

So if you require such a method, you first have to open an enhancement request against TestLink itself (http://mantis.testlink.org/login_page.php) for this topic. When TestLink server has implemented such an API method , the API python client could use this.

Hope, this helps a little bit. Regards Luiko

chihuen commented 5 years ago

Thx for your replying ^_^