Example #1
0
        ITreeNode IVisualStudioInstance.WaitForItemRemoved(params string[] path)
        {
            var res = SolutionExplorer.WaitForItemRemoved(AddSolutionToPath(path));

            if (res != null)
            {
                return(new TreeNode(res));
            }
            return(null);
        }
Example #2
0
 public AutomationElement WaitForItemRemoved(params string[] path)
 {
     return(SolutionExplorer.WaitForItemRemoved(AddSolutionToPath(path)));
 }