public CodedUITestBase()
 {
     instance = this;
     retry = Settings.Execution.Default.RETRY;
     retryInterval = Settings.Execution.Default.RETRY_INTERVAL;
     objectMapParser = new ObjectMapParser();
     log = LogManager.GetLogger(typeof(CodedUITestBase));
 }
 public static void beforeType()
 {
     caller = CodedUITestBase.Instance;
     adviceInterceptionPoint();
 }
 public HandlePopupTimerTask(CodedUITestBase caller, string actionFlow, int timeInterval)
 {
     this.caller = caller;
     this.actions = actionFlow;
     timer = new System.Timers.Timer();
     timer.Interval = timeInterval;
     timer.AutoReset = false;
     timer.Elapsed += new System.Timers.ElapsedEventHandler(OnTimedEvent);
 }