if you have examples of applications on which this happens then please create support ticket and share them with us. If you can describe in a given case what methods are noticeably slower, that would also be very helpful.
Hi Pawel. I don't know yet how to add support tickets but in my project which is very slowing down from Version 5.53, I use a lot of '.Click' and '.Keys'. Maybe you can test the difference in time between V15.52 and V15.53?
Some more information: I use Jscript.
In the example of rraghvani, there are not a lot of '.Click' and '.Keys' instructions.....
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.