var fDesc=new Array(); fDesc[0] = "CUITe (Coded UI Test enhanced) Framework helps reduce code, increases readability and maintainability, while also providing a bunch of cool features for the automation engineer.
Main features:
- Simple to setup and use, just install and refer “CUITe.dll” in your Test project
- Object Repository: Keeps UI Object definitions separate from automation code (no more UIMaps)
- Reduces code to <10%: Readable, maintainable, sustainable UI automation code
- Treat table as Table (logical way of handling content inside a table)
Web Automation: JavaScript execution support"; 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 = ''; } }