ContributionsMost RecentMost LikesSolutionsRe: How to get the number of decimal places in a given number function count_fraction_length() { var number_to_string = "123.1000"; var length = number_to_string.length; var position = number_to_string.indexOf(".")+1; Log.Message(length-position); } You may need to convert duble to string. Re: Java Bridge isn't present under Tools->Options->Engines in my licensed TestComplete 11.20 If I well remember. Java bridge is available only to desktop module. Have you installed it? Add support for PrimeFaces UI 2.0 PF is currently more and more popular, it would be nice to have support for PrimeUI controls in TestComplete. Re: Javaserver Faces (JSF) and TestComplete Check this post. (http://community.smartbear.com/t5/Functional-Web-Testing/TC11-do-not-recognize-a-combobox/m-p/106318#M25879) Re: TC11 do not recognize a combobox So it looks silmitar to my problem with PrimeFaces. Here also after you click combobox itemlist is displayed with js. I wrote some code to work with this kind of controls, mayby it will help you. function PrimeFaces_Dropdown(DropDownToClick,ListValueToSelect) { PropArray = new Array("tagName", "innerText"); ValuesArray = new Array("LI", ListValueToSelect); DropDownToClick.Click(); NameMapping.Sys.browser.Find(PropArray,ValuesArray,5,true ).Click() } --------------------------------------------------------- DropDownToClick - mapped // clickable part of control ListValueToSelect - text to chose from list NameMapping.Sys.browser.Find(PropArray,ValuesArray, 5 <- how deep TC will looking for list ,true ).Click() Re: TC11 do not recognize a combobox Is it PrimeFaces control?