var fDesc=new Array();
fDesc[0] = "Rational Functional Tester is an automated functional testing and regression testing tool.
Provides testers with automated testing capabilities for functional testing, regression testing, GUI testing and data-driven testing.
Main features:
-Storyboard Testing simplifies test visualization and editing using natural language and rendered screenshots
-Integration with Jazz Eclipse Client – for Rational Team Concert and Rational Quality Manager Servers – provides access to work items and logical or compound SCM test asset support
-Enables testers to automate tests resilient to frequent application user interface changes with ScriptAssure™ technology
-Validates dynamic data with multiple wizards, verification points and support for regular expression patterns
-Automated wizard for data-driven testing increases test coverage by reusing individual tests with multiple sets of test data
-Supports custom controls through proxy SDK
-Supports a broad range of applications such as Web-based, .Net, Java, Siebel, SAP®, terminal emulator based applications, PowerBuilder, AJAX, Adobe Flex, Dojo Toolkit, GEF, Adobe PDF documents, zSeries®, iSeries®, pSeries®
-Supports Oracle ERP application environments through available extensions
-Operating systems supported: Linux, Windows";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}