ContributionsMost RecentMost LikesSolutionsNew Tabs in MHT Results File It would be pretty useful to have the "Watch List" tab in the results file so you could see the state of variables in a mht results file, with this you should be able to get a good idea on what went wrong very quickly. Certainly if you are executing your tests via Jenkins. Re: Add Watch List to the MHT file I am assuming that there has been no response to this question that is not possible.... Add Watch List to the MHT file in the MHT results file it would be useful to have the "Watch List" tab in there so you can see the state of variables. Is it possible to add this? At the moment i only see - Picture, Addtional Info, Call Stack, Performance Counters SolvedRe: Why has wItemList disappeared I have figured out the issue i have come across, but this was due to my developors changings up the code. The dropdown list i now see is not a real dropdown box and is made up from some HTML magic as we have a search box within the dropdown. So this is why the wItemList is not available as its not a recongized dropdown list. So my previous message about having a workaround has now been promoted to my main function for using dropdowns now. Re: Why has wItemList disappeared I have got around this at the moment by creating a temp function that clicks the dropdown and then uses the FindChild method to locate the correct selection from the dropdown. Not the most sophiscated fix but it does the job for now. Re: Why has wItemList disappeared I have raised a isse for this as i need this fixed fairly quickly as its currecntly affecting every test. Re: Why has wItemList disappeared I truely hope not, i have tried restarting, multiple browsers. deleting the mapping and remapping and nothing is working. Its seems to be on every dropdown list in the application to add insult to injury. Why has wItemList disappeared For some reason the wItem property has seem to have disappeared from the object we are using. This is preventing the test from selecting the correct option from the dropdown, i dont believe anything has changed as it was working one minute and not another. so our current function does not work, does anyone have any ideas? function selectDropDownItem(theDropDown, theItem) { theDropDown.WaitProperty("Exists", true, MEDIUM_LENGTH_TIMEOUT); theDropDown.WaitProperty("VisibleOnScreen", true, MEDIUM_LENGTH_TIMEOUT); //theDropDown.Click(); //This was commented out as it was clicking out of place see TAP-381 //theDropDown.parent.Click(); //This was commented out as it was clicking out of place see TAP-381 var list = (theDropDown.wItemList) //LogToHTML(list); var tokens = tokenize(list, ";"); for (var i = 0; i < tokens.length; i++) { //LogToHTML(tokens[i]); if (aqString.Trim(tokens[i]) == theItem) { var index = i; break; } } LogToHTML(index); theDropDown.WaitProperty("Exists", true, MEDIUM_LENGTH_TIMEOUT); theDropDown.WaitProperty("VisibleOnScreen", true, MEDIUM_LENGTH_TIMEOUT); //theDropDown.Click();//added this to get the report items styles to work - may have broken other code elsewhere? theDropDown.ClickItem(index); When i run the function i get the following error, The object with the specified attributes does not exist. This is odd as this function has been working perfectly fine for ages, when i try and remap the object i am still not seeing the wItemList. Re: Is it possible to remove a objects association with a named mapping I decided to make a short video and upload it to help get this error across. i have looked into the extending search but i'm unable to get this working. https://www.youtube.com/watch?v=eB_f1ZrQlzo&feature=em-upload_owner Re: Is it possible to remove a objects association with a named mapping I dont think i am explaining the issue correctly as i dont believe that is going to work. If go to the name mapping and right click and highlight the screen it will select the frame below the object i need to map. if i go to the same mapping and get it show me the object in the object browser it will go to framemainframe() (for example) if i right click the object i need to map it ask it to show me in name mapping it will send me the name mapping that is already linked to framemainframe which is out of the area of where i need to work. I have tabs on the page above the main content, these tabs are a seperate object to the main window. but for some reason it has assoicated itsself with the wrong name mapping. This is such a difficult issue to explain.....