Hi everyone! Since the latest release, all my test case are slowing down compared to TC 15.52. For example the same Test : with 15.52 : And with TC 15.53 : All oper...
function main()
{
// https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_textarea
var page = Sys.Browser("chrome").Page("https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_textarea");
var frame = page.Panel("container").Panel("iframecontainer").Panel("iframe").Panel("iframewrapper").Frame("iframeResult");
var textarea = frame.Form(0).Textarea("w3review");
Info("Chrome", "C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe");
Info("TestComplete", "C:\\Program Files (x86)\\SmartBear\\TestComplete 15\\x64\\Bin\\TestComplete.exe");
Log.Message("Start...");
textarea.Keys("^aLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.");
Log.Message("...Finish!")
}
function Info(AppName, AppPath)
{
var VerInfo = aqFileSystem.GetFileInfo(AppPath).VersionInfo;
Log.Message(AppName + " v" +
VerInfo.FileMajorVersion + "." +
VerInfo.FileMinorVersion + "." +
VerInfo.FileBuildVersion + "." +
VerInfo.FileRevisionVersion);
}
The time taken between v15.54.3.7 and v15.52.2.7, is about ~3 seconds
Play back settings in both versions is,
Though I'm not able to reproduce it, it could be happening under certain conditions.