Home | History | Annotate | Download | only in configurable_test

Lines Matching defs:Action

11 class Action(object):
22 Executes the action.
25 action.
27 logging.info('Executing action "%s"', self)
29 logging.info('Done executing action "%s"', self)
39 action.
43 class MuteMicrophone(Action):
50 class UnmuteMicrophone(Action):
57 class JoinMeeting(Action):
76 class CreateMeeting(Action):
83 class LeaveMeeting(Action):
90 class RebootDut(Action):
112 class RepeatTimes(Action):
134 class AssertFileDoesNotContain(Action):
164 class AssertUsbDevices(Action):
199 class SelectScenarioAtRandom(Action):
237 class PowerCycleUsbPort(Action):
302 class Sleep(Action):
304 Action that sleeps for a number of seconds.
321 class RetryAssertAction(Action):
323 Action that retries an assertion action a number of times if it fails.
325 An example use case for this action is to verify that a peripheral device
330 def __init__(self, action, num_tries, retry_delay_seconds=1):
334 @param action The action to execute.
335 @param num_tries The number of times to try the action before failing
345 self._action = action
359 'Action %s failed, will retry %d more times',
366 return ('RetryAssertAction[action=%s, '
371 class AssertNoNewCrashes(Action):