var fDesc=new Array();
fDesc[0] = "Selenium Wrapperis a Windows COM callable wrapper for Selenium. It makes it possible to automate web browsing using Excel and VBA code or using a simple VBS file executed by double-clicking on it.
User's actions can be recorded using the Firefox plugin named "Selenium IDE" and translated to VBA or VBS with the provided formatters.
Features:
Automate repetitive web browser tasks.
Quickly fill a web form multiple times with an Excel data set.
Extract data from a web page in an Excel sheet.
Run web tests against an Excel data set (Data-Driven Testing).
Take screenshots of a Web site and save them in a PDF file.";
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 = '';
}
}