TimeConfig
Central storage and minipulation of timing values
The TimeConfig class is accessible via the pywinauto.timings module.
Methods
f Fast(self) ...
Set fast timing values
Currently this changes the timing in the following ways: timeouts = 1 second waits = 0 seconds retries = .001 seconds (minimum!)
(if existing times are faster then keep existing times)
f Slow(self) ...
Set slow timing values
Currently this changes the timing in the following ways: timeouts = default timeouts * 10 waits = default waits * 3 retries = default retries * 3
(if existing times are slower then keep existing times)
See the source for more information.