Class AutomationEngine.Options

  • Enclosing class:
    AutomationEngine

    public static class AutomationEngine.Options
    extends java.lang.Object
    Allows users to toggle screenshots, change the sleep duration between tests, etc.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      int minFrameCount
      Similar to sleepDuration, but expressed as a frame count.
      float sleepDuration
      Minimum time that automation waits between applying a settings object and advancing to the next test case.
      boolean verbose
      If true, test progress is dumped to the utils Log (info priority).
    • Constructor Summary

      Constructors 
      Constructor Description
      Options()  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • sleepDuration

        public float sleepDuration
        Minimum time that automation waits between applying a settings object and advancing to the next test case. Specified in seconds.
      • minFrameCount

        public int minFrameCount
        Similar to sleepDuration, but expressed as a frame count. Both the minimum sleep time and the minimum frame count must be elapsed before automation advances to the next test.
      • verbose

        public boolean verbose
        If true, test progress is dumped to the utils Log (info priority).
    • Constructor Detail

      • Options

        public Options()