ContributionsMost RecentMost LikesSolutionsRe: FireFox 33.1.1 Freezes after "Append to Test" in TestComplete V10.40.2015.7Hi, Any news on this? For me, FF 33 freezes when searching for an object (using the FindChild method) - TestComplete 10.50. Also tried FF 32 and 29 and the same issue appears. I know that with TestComplete 10.20 I didn't have this issue. Can I get a download link for TestComplete 10.20 so I can try and reproduce this on the older version ? Thanks, AndreiRe: IE11 settings so that only one Page("*") appearsAdding the "TabProcGrowth" dword key value in the registry did the trick for me... AndreiRe: IE11 settings so that only one Page("*") appears@Veronica, I found that if I update IE10 to IE11, my tests work fine as long as I don't do a IE 11 reset. However, after the IE11 reset, the issues appear. Hope this somehow helps you. Andrei Re: IE11 settings so that only one Page("*") appears Hi, I understand I should use the permanent URL in this case, but when I am on page A and try to navigate on page B (in the same tab), I automatically have 2 page object in ObjectBrowser (object page A and object page B). The test correctly takes me to page B, but it also creates the page object of page B (different than page A). So, instead of using the new object created (for page B), TestComplete exepcts the object for page A to turn into object page B, which never happens, and my test fails when navigating to a different URL. Any solutions for this? Thanks, Andrei Re: IE11 settings so that only one Page("*") appears@R. Gratis for counting open tabs I've used smth like //search all level 1 pages from the IE process that contain "http://" string in the URL property and store them into array var pagesList = Sys.Browser("iexplore").FindAllChildren("URL", "http://*", 1).toArray(); //loop through the array for(var i = 0; i < pagesList.length; i++) { //for pages that don't contain the URL being tested if(aqString.Find(pagesList.URL, page.URL) != -1) { //do things like close or whatever ... } } Hope this helps Re: IE11 settings so that only one Page("*") appearsOk, just tried the registry thing and it's not working. @Jose Pita: Do you happen to remember which settings? If not, I'm guessing Smartbear support should be aware of this, as it's a serios IE11 compatibility issue. Anonymous support:: any solutions for this? Thanks, AndreiRe: IE11 settings so that only one Page("*") appearsHi, and thanks for the suggestions. I will try the registry suggestion, but for IE8 to IE10 works out-of-the box, without having to do anything special. Only problem is with IE11. I will try however adding the registry key, although as far as I understand from that post, changing that registry will only make sure the IE will display only 1 process. But will give it a try and let you know the results. Thanks.Re: IE11 settings so that only one Page("*") appearsHi, I'm experiencing the following issue (in Win 7 / IE11 with TC 10.20): 1. navigate to page A. Wait for page to load. 2. navigate to page B. Wait for page to load 3. Open the Object Browser: both pages A and B appear in the Object Browser. So, if I do smth like page.FindChild() it actually searches in page A, not page B. Any suggestion for this ? I've attached a screenshot with this. Thanks, AndreiProject Explorer from TC is extremely slowHi, I've been experiencing extreme slowness on creating a logical directory or moving tests into a logical directory in TC's Project Explorer panel. I'm running TC 8.70, but this issue also occurred in previous versions (8.50 and 8.60. I can't remember if this was a issue before that). What I am asking is whether this is a known issue or not? And is there a fix? Today I had to wait about 2 minutes for TC to move 5 tests into a sub-folder, which is extremely enoying. ThanksRe: aqDateTime issueGreat. Thanks, Andrei