Hi,
We have around 127 test methods and we have arranged them in different ordered tests.
And we are maintaining one ordrered test as a collection of all other ordered tests.
Here the problem is when we execute that one ordered test (collection of all other ordered test) and after starting of execution and some time later the coded ui starts slow and missing to find controls.
For example in the specified ordered test we have 1 - 125 Test methods in the form of different ordered tests which is getting slower after some time after starting execution. But if we execute individual ordered test it executes faster.
Please let me know is there performance improvements (like clearing memory, removing temporary windows files) that I can implement along with an example.
Some more info as follows:
In ClassInitialize,
we have the following
Playback.PlaybackSettings.WaitForReadyLevel = WaitForReadyLevel.Disabled;
Playback.PlaybackSettings.DelayBetweenActions = 200;
ConfigurationManager.AppSettings["WebWaitForReadyLevel"] = "3";
And nothing in Cleanup.
Thanks & Regards, Sasisekar J