Exemplo n.º 1
0
 public virtual void Next(Type type)
 {
     currentFlowStepSnapShot = 0;
     var subFlowStep = new SubFlowStep {Label = type.Name};
     subFlowStep.AddScreenShot(TakeScreenShot(type.Name));
     flowSteps.Add(subFlowStep);
     screenCreationTime = DateTime.Now;
 }
Exemplo n.º 2
0
 public virtual void Act()
 {
     if (!IsEmpty)
     {
         SubFlowStep previousSubFlowStep = flowSteps[flowSteps.Count - 1];
         previousSubFlowStep.AddScreenShot(TakeScreenShot(previousSubFlowStep.Label));
         previousSubFlowStep.TimeSpent = (DateTime.Now - screenCreationTime).Milliseconds;
     }
 }
Exemplo n.º 3
0
        public virtual void Next(Type type)
        {
            currentFlowStepSnapShot = 0;
            SubFlowStep subFlowStep = new SubFlowStep();

            subFlowStep.Label = type.Name;
            subFlowStep.AddScreenShot(TakeScreenShot(type.Name));
            flowSteps.Add(subFlowStep);
            screenCreationTime = DateTime.Now;
        }