Forum Discussion
For testing our application we need the FindChild funtionality very often.
But with Chrome we have a big performance problem:
TC Version 11.31.2420.7
Is there any solution to get a better performance with chrome?
Firefox = OK
var StopWatch;
StopWatch = HISUtils.StopWatch;
StopWatch.Start();
var pageObj = Sys.Browser("firefox").Page("http://u020:23380/CRM/*").FindChild("contentText", "Qnotiz_2805_VK_01", 500, true);
StopWatch.Stop();
Log.Message("Firefox Execution time: " + StopWatch.ToString());
Firefox Execution time: 00:00:00.390
Internet-Explorer, slower but ok
var StopWatch;
StopWatch = HISUtils.StopWatch;
StopWatch.Start();
var pageObj = Sys.Browser("iexplore").Page("http://u020:23380/CRM/*").FindChild("contentText", "Qnotiz_2805_VK_01", 500, true);
StopWatch.Stop();
Log.Message("Internet Explorer Execution time: " + StopWatch.ToString());
IE Execution time: 00:00:00.530
Chrome,takes 10 time longer
var StopWatch;
StopWatch = HISUtils.StopWatch;
StopWatch.Start();
var pageObj = Sys.Browser("chrome").Page("http://u020:23380/CRM/*").FindChild("contentText", "Qnotiz_2805_VK_01", 500, true);
StopWatch.Stop();
Log.Message("Chrome Execution time: " + StopWatch.ToString());
Chrome Execution time:00:00:05.148