Hello
I also have a problem with wrong Browsers count. I use Telerik.Testing.Framework.2011.2.1103
The code I use is below
var beforeClickBrowsersCount = _browser.Manager.Browsers.Count;
var anchor = new HtmlDiv(element);
anchor.MouseClick(MouseClickType.LeftClick);
var sw = new System.Diagnostics.Stopwatch();
sw.Start();
while (sw.ElapsedMilliseconds < timeout) {
if (_browser.Manager.Browsers.Count > beforeClickBrowsersCount) {
break;
}
System.Threading.Thread.Sleep(2000);
}
sw.Stop();
It clicks on the itemmenu at the page, and after that another new window of browser is created. But browsers count is not changing. The ActiveBrowser.Window.Handle is also not changing. But if I click the itemmenu by myself during the test, the browsers count is changing like there is some difference between my click and Telerik MouseClick.