Search found 2 matches

by releppes
Fri Jan 29, 2010 9:19 pm
Forum: XML-RPC API
Topic: Using API through Perl
Replies: 1
Views: 4307

Using API through Perl

I just started using the XML-RCP API through Perl. There's no sample code, but here's the syntax I use. #!/usr/bin/perl use XML::RPC; use Data::Dumper; my $xmlrpc = XML::RPC->new('http://.../lib/api/xmlrpc.php'); my $result = $xmlrpc->call('tl.reportTCResult', { devKey => '...', testcaseid => '...',...
by releppes
Mon Dec 21, 2009 2:04 pm
Forum: Companies using Test Link
Topic: Performance Technologies
Replies: 0
Views: 4152

Performance Technologies

Selenium is used for browser testing, SNMP for network device testing, and Expect for anything with a console. Perl is the test scripting language of choice to tie it all together. Perl's Test Anything Protocol (TAP) output is used for recording test results. The TAP logs are then parsed to generate...