public void DeleteSelectedConversation()
        {
            var search = new ConversationSearcher(metlWindow.AutomationElement);
            search.SelectConversation(TestConstants.OWNER_CONVERSATION_TITLE);

            var edit = new ConversationEditScreen(metlWindow.AutomationElement);
            edit.Delete();
        }
        public void DeleteCurrentConversation()
        {
            var results = new UITestHelper(metlWindow);
            results.SearchProperties.Add(new PropertyExpression(AutomationElement.AutomationIdProperty, Constants.ID_METL_CONVERSATION_SEARCH_RESULTS));

            results.WaitForControlCondition((uiControl) => { return Rect.Empty.Equals(uiControl.GetCurrentPropertyValue(AutomationElement.BoundingRectangleProperty)); });
            
            var editConversation = new ConversationEditScreen(results.AutomationElement);

            editConversation.Delete();
        }