ContributionsMost RecentMost LikesSolutionsIssue of IE8 browser get closes when not neededI recorded a Testcomplete script on my app,which needs vpn connection running on IE8 Browser.The problem is when I playback the script ,testcomplete close the existing IE8 instance that is running vpn connection and hence cannot access app which results in object not found issues. How can I tell testcomplete not to close the running IE instance which sets a vpn connection?Re: script to select item in flex popupmenubuttonI am not recording script nor using name mapping, I want to handle this problem with findchild method dynamically Re: findchild with PopupMenuButtonI am not recording script nor using name mapping, I want to handle this problem with findchild method dynamicallyfindchild with PopupMenuButtonwith findchild method I can able to click on popmenubutton control. but i am not able to select a list of items in popmenubutton. please let me know how to click on 1 item in popupmenubutton Re: script to select item in flex popupmenubuttoncan we write with HoverMouse method?script to select item in flex popupmenubuttonwhat is script to select item in flex PopupMenuButton below is the same menu I have file -open -new -closehow to use findchild for flex object properties1)I am using flashInjector and able to spy flex object properities and values 2)But unable to identify object using the flex object property and value with findchild method during runtime,if I replace with basic properties other than flex I am able to identify object. Please let me know where I am doing wrong Below is the code Sub Test1 Test1 ' Creates arrays of property names and values PropArray = Array("id") ValuesArray = Array("txtUser") ' Searches for the window Set p = Sys.Process("iexplore",2).Page("*") Set w = p.FindChild(PropArray, ValuesArray, 40) ' Processes the search results If w.Exists Then w.Keys("imsss") Else Log.Error "The object was not found. end if End Sub Re: Find child conceptI agree with you that properties depends on AUT. The Block of code i am talking about is dim select1 props=Array("idStr") values=Array("searchQueryView:content:restrictions:0:operatorItem") redim select1(20) select1 = Sys.Process("firefox").Page("*").FindallChildren(props, values, 10) log.message(ubound(select1))---->(here i am getting 3 objects and desired object is at 3rd positions,in some scenarios it may at second position) for i=0 to ubound(select1) button(i).click--->(it throwing error for i=0 and stoppping execution as desired object is at 3rd position,so i am looking for your help how to manage script interruption and go to position 3 and identify object),please tell me all possibilties in script to handle this next other thing what you suggested to choose idStr,ObjectType,innertext ( i will try that too) Re: Find child conceptyou are right,I need to cross check it. In general on a page even if we see 1 button through human eye,in real they are other objects with same properties and if we use findchild method it catches first match (and if it is not desired object,It throws message,an attempt to perform an action at point (0, 0),which is out of the window bounds) By changing the other property i am able to click successfully. so only by trail and error I am able to find unique property combination.please help out to have a block of script to handle this problem effectively in first attempt . Note:I use a frame where i pass object properties and values through datasheet and identify object through script with findchild methodRe: Find child concept I guess i called it correctly,because if i called it wrongly by changing to other property also it should not work below is the code for your glance props = Array("tagName", "innerText") values = Array("a", "Products") Set checkBox1 = page.FindChild(props, values, 10) if checkBox1.exists then chekBox1.checked =True end if