When writing tests using Coded UI Framework is there any benefit to start a search for a control using a container other than the browser window.
To illustrate - say I have a fairly complex html, with a lot of nesting. Somewhere in the HTML there's something like this:
<nested tags (lots of them)>
<div id='container'>
<a lot of nested tags>
<div id="control_I_want"></div>
<div id="another_control_I_want"></div>
</a lot of nested tags>
</div>
</nested tags (lots of them)>
Is the search for the two controls I want to find going to be any faster if I first find 'container' and then use that as a base for searching for the two controls I want? Or is starting with just the browser window as the base of my search going to be just as fast? I tried to code both ways but my results are inconclusive.
Code I used for testing:
HtmlDiv cont = new HtmlDiv();
cont.SearchProperties.Add("Id", "container");
HtmlDiv div1 = new HtmlDiv(cont);
div1.SearchProperties.Add("Id", "control_I_want");
div1.Find();
HtmlDiv div2 = new HtmlDiv(cont);
div2.SearchProperties.Add("Id", "another_control_I_want");
div2.Find();
and same code that uses Browser window as the parent component:
HtmlDiv div1 = new HtmlDiv();
div1.SearchProperties.Add("Id", "control_I_want");
div1.Find();
HtmlDiv div2 = new HtmlDiv();
div2.SearchProperties.Add("Id", "another_control_I_want");
div2.Find();
From your experience - is one method better than the other? Unfortunately resources for CUIT are scarce so no amount of google helped me answer this conclusively.