Skip to main content

Posts

Showing posts from 2013

Selenium Test Integration with Testlink

Selenium Test Integration with Testlink The following guide will show to configure selenium to report directly the automated test execution to Testlink. Download the files needed: Selenium - http://bit.ly/S9S9xX Testlink API Client - http://bit.ly/W31yrF Selenium Server - http://bit.ly/W9jTjB Teslink Java API - http://bit.ly/11Co8Lw Notes: In order to make this work, make sure you can add the libraries of the Testlink client API package to your project. Your Testlink project must have the test cases as automatic execution and project must be enabled for automation. Generate an API key from testlink Go to http://localhost/testlink and login with your credentials Go to My Settings and generate a new api key. Create a simple java application. Create an interface class named IConstants and paste the following code: public interface IConstants { final String DEVKEY = "<code generated by testlink>"; final String URL = "http://lo...

How to install and configure Testlink

How to install and configure Testlink Prerequisites: - Java JDK - MySQL Server - Apache Web Server - PHP5 Notes: a. This tutorial was created using the following version of each software needed. - Ubuntu 10.04 i386 as OS. - TestLink 1.9.2 - MySQL 5.1 - Apache2 b. The installation of prerequisites is detailed at the end of the document. c. As a personal recommendation, before start the testlink installer in the browser, set up the files and prerequisites to make the installation experience faster and easier. Let’s Go! 1. Download & install some necessary packages sudo apt-get install php5-mysql php5-pgsql php5-gd php5-ldap php-pear 2. Edit the php.ini file located in /etc/php5/apache2 and set the following parameters: max_execution_time = 120 session.gc_maxlifetime = 2700 3.Restart the apache server 4. Download testlink: http://sourceforge.net/projects/testlink/files/TestLink%201.9/TestLink%201.9.2/testlink-1.9.2.tar.gz/download 5. U...