pyWinAuto: pywinauto.timings.TimeConfig -- Central storage and minipulation of timing values

TimeConfig

Central storage and minipulation of timing values


Methods

f __init__(...) ...

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

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)

f Defaults(self) ...

Set all timings to the default time

See the source for more information.