ContributionsMost RecentMost LikesSolutionsNeed help selecting item from drop-down buttonHi, I am trying to select an item from the drop-down button but somehow it clicks the checkbox next to it .Please help regrading this.It is a drop-down with values cat1 and cat2. IF I want to select cat2 ,somehow it opens the drop-down but it is not able to select cat2 and indeed checks the checkbox below it as it falls just under the cat2 item when the drop-down is expanded..The use of keyboard clicks up and down do not work. The only thing I can do in the script is : page.document.all.Item("catalog").ClickItem(Ctlg); Thanks. how to select sub-menu items on right-click item on webHi, I need to click the sub-menu item "Content Access" but I want to make it static as the menuitem number keeps changing whenever new additions are there in the build .This "Content Access" sub menu item is present in another palce to where it gets clicked correctly if I call it using nativeWebObject but here when I use the same it does not recognise it as all the properties for this menu item and the other one are same and it does not recognises it. Can we make a script on going to the memebr and right-clicking it from the sub-mneu items like creating a loop and finding the sub-menu items .Is there any way it can be done and how? Thanks.Bug tracking using bugzillaHi , I have a query regarding bugzilla.I open bugs in bugzilla and not from test complete issue tracking sytem.Can we link those open bugs with my tests in test complete so that we can keep a track of the failure history? Thanks, SumedhaRe: 'checked' property not being recongnised for an object in firefoxHi , I tried to evaluate and inspect .Also I saw in the object tree.The bigger box is Item("98") which does not have checked property ,but the checkbox appears as Item("access34Read") which is a checkbox and also has the checked property .Also Item("98") is the parent of Item("access34Read") .So what I am trying to do in my script is calling this code: var cellText = "qa16"; var cellObj = GetNextCell4Read_All(all2, cellText); Log.Message(cellObj.firstChild.checked); ITem("98") firstChild property appears as [Text] and when I expand it ,it does not show any checked property. Then how to call the child of Item("98") to find the checked property. Thanks, Sumedha cellText = "qa16"; cellObj = GetNextCell4Read_All(all2, cellText);.Message(cellObj.firstChild.checked);ITem("98") firstChild property appears as [Text] and when I expand it ,it does not show any checked property. Then how to call the child of Item("98") to find the checked property.Thanks,Sumedha'checked' property not being recongnised for an object in firefoxHi, I am trying to get checked property for a checkbox but it is not present in the test complete properties. In the screenshot,I have captured the bigger checkbox and trying to get the checked property for the child of the bigger checkbox.The bigger checkbox firstChild is the checkbox to be clicked but it does not have checked property.How to find that? function GetNextCell4Read_All(allObj, cellText) {var obj = allObj.FindChild("innerHTML", cellText); var nativeCell = obj.parentNode.cells.item(1); return allObj.FindChild("innerHTML", nativeCell.innerHTML); } var cellText = "qa16"; var cellObj = GetNextCell4Read_All(all2, cellText); Log.Message(cellObj.firstChild.checked); Thanks, Sumedha GetNextCell4Read_All(allObj, cellText){ obj = allObj.FindChild("innerHTML", cellText);v nativeCell = obj.parentNode.cells.item(1); allObj.FindChild("innerHTML", nativeCell.innerHTML); } cellText = "qa16"; cellObj = GetNextCell4Read_All(all2, cellText);.Message(cellObj.firstChild.checked);Thanks,SumedhaRe: Not able to record scripts after upgrading to TC8.5I tried recording the click and entering data on firefox,it works absolutely fine but with internet explorer ,it is super slow. Thanks, SumedhaRe: Not able to record scripts after upgrading to TC8.5Hi Robert, I completely uninstalled Test complete and then reinstalled the latest version and that problems seems to be fine now but another major issue. For example , the clicks ,entering data through keys is too delayed which is making it very hard to record scripts. When I click something,it just sits there ,takes some seconds and then the click happens .It is more delayed if I try to enter some data ,it jsut keeps sitting there entering only one alphabet. Thanks, SumedhaRe: Not able to record scripts after upgrading to TC8.5Hi Robert, I am recording a script against IE7 and in my web application I am trying to perform some click actions on folders and edit the content of the folder . It was working fine until afternoon whe I upgraded to TC8.5 (latest version) . Now it records only hover mouse actions in the script and no clicks or edit text are getting recorded . I simply upgraded it without uninstalling the tool . Can that be an issue? Thanks, SumedhaNot able to record scripts after upgrading to TC8.5Hi , I am not able to record any scripts .I recently upgraded my TestComplete 8.5 ,after that the problem started coming .The recorded scripts are coming without any recorded content. Please help. Thanks, SumedhaRe: Test execution pauses during nightly runs when exception occursHi Allen, I have an example script code below: page1 = iexplore.Page("http://" + servername + ":" + port + "/" + r2wcontext + "/" + "pageMartViewer.do*"); if (page1.document.all.Item("infoMessageDiv").outerText == "The document has no annotations. ") Log.Message("The annotation is deleted correctly by the user having manage annotations permissions","",pmNormal,Attr) else Log.Error("There is some error in creating the annotation","",pmNormal,Attr); I have also attached the error log screenshot. So when it does not find the page object "page1",it continues on error but the execution ends at the line where if loops starts and the corresponding error line in log says "Exception", I have both the options disabled "Stop on error" and "Error Dialog". So why does it stops at the loop saying exception in log ? If the options are disabled,it should continue to run the script .. It should take any exception as 'EXCEPTION' whether it is a loop code or anything else . Thanks, Sumedha