Exemple #1
0
        //public delegate void StepStartHandler();
        //public delegate void StepSuccessHandler();
        //public delegate void StepFailedHandler();

        //public StepStartHandler OnStartStep;
        //public StepSuccessHandler OnStepSuccess;
        //public StepFailedHandler OnStepFailed;
        private Step CreateNextStep()
        {
            using (var db = new Entities())
            {
                if (this.NextStepId != null)
                {
                    int? nextStepType = GetNextStepType(this.NextStepId);
                    if(nextStepType != null)
                    {
                        Step nextStep;
                        switch (nextStepType)
                        {
                            case 1: nextStep = new EnterPageStep(this.NextStepId.Value, this.Context); break;
                            case 2: nextStep = new EnterInputStep(this.NextStepId.Value, this.Context); break;
                            case 3: nextStep = new ClickStep(this.NextStepId.Value, this.Context); break;
                            case 4: nextStep = new MatchingStep(this.NextStepId.Value, this.Context); break;
                            case 5: nextStep = new GetCaptchaStep(this.NextStepId.Value, this.Context); break;
                            case 6: nextStep = new GetOTPStep(this.NextStepId.Value, this.Context); break;
                            default: nextStep = new EnterPageStep(this.NextStepId.Value, this.Context); break;
                        }
                        return nextStep;
                    }
                    else
                    {
                        return null;
                    }
                }
                else
                {
                    return null;
                }
            }
        }
Exemple #2
0
        //public delegate void StepStartHandler();
        //public delegate void StepSuccessHandler();
        //public delegate void StepFailedHandler();

        //public StepStartHandler OnStartStep;
        //public StepSuccessHandler OnStepSuccess;
        //public StepFailedHandler OnStepFailed;
        private Step CreateNextStep()
        {
            using (var db = new Entities())
            {
                if (this.NextStepId != null)
                {
                    int?nextStepType = GetNextStepType(this.NextStepId);
                    if (nextStepType != null)
                    {
                        Step nextStep;
                        switch (nextStepType)
                        {
                        case 1: nextStep = new EnterPageStep(this.NextStepId.Value, this.Context); break;

                        case 2: nextStep = new EnterInputStep(this.NextStepId.Value, this.Context); break;

                        case 3: nextStep = new ClickStep(this.NextStepId.Value, this.Context); break;

                        case 4: nextStep = new MatchingStep(this.NextStepId.Value, this.Context); break;

                        case 5: nextStep = new GetCaptchaStep(this.NextStepId.Value, this.Context); break;

                        case 6: nextStep = new GetOTPStep(this.NextStepId.Value, this.Context); break;

                        default: nextStep = new EnterPageStep(this.NextStepId.Value, this.Context); break;
                        }
                        return(nextStep);
                    }
                    else
                    {
                        return(null);
                    }
                }
                else
                {
                    return(null);
                }
            }
        }
Exemple #3
0
        public Worker(StepContext stepContext)
        {
            Step firstStep = new EnterPageStep(1, stepContext);

            this.Step = firstStep;
        }
Exemple #4
0
 public Worker(StepContext stepContext)
 {
     Step firstStep = new EnterPageStep(1, stepContext);
     this.Step = firstStep;
 }