Ejemplo n.º 1
0
        // take a config and convert to runtime
        public ScriptRuntime(IScriptConfig scriptConfig, IGlobalVariables variables)
        {
            // copy basic infos
            ScriptID       = scriptConfig.ScriptID;
            ScreenshotPath = scriptConfig.ScreenshotPath;
            StartingUrl    = scriptConfig.StartingUrl;
            ScriptName     = scriptConfig.ScriptName;

            Steps     = new List <StepRuntime>();
            Variables = variables;
            foreach (var variable in scriptConfig.Variables)
            {
                Variables.Set(variable.Name, variable.Value);
            }

            // convert each step from config to runtime
            foreach (var step in scriptConfig.Steps)
            {
                var newStep = new StepRuntime();

                if (step.EmbeddedScript != null)
                {
                    newStep.EmbeddedScript = new ScriptRuntime(step.EmbeddedScript, Variables);
                }

                configureActions(step, newStep);
                configureExpectations(step, newStep);
                configureGetters(step, newStep);

                configureLoggers(step, newStep);

                Steps.Add(newStep);
            }
        }
Ejemplo n.º 2
0
 internal void configureGetters(StepConfig step, StepRuntime newStep)
 {
     foreach (var getter in step.Getters)
     {
         switch (getter)
         {
         case TextGetterConfig config:
             newStep.Getters.Add(new TextGetterRuntime(config));
             break;
         }
     }
 }
Ejemplo n.º 3
0
        internal void configureExpectations(StepConfig step, StepRuntime newStep)
        {
            foreach (var exp in step.Expectations)
            {
                switch (exp)
                {
                case ElementTextExpectConfig config:
                    newStep.Expectations.Add(new ElementTextExpectRuntime(config));
                    break;

                case PageUrlExpectConfig config:
                    newStep.Expectations.Add(new PageUrlExpectRuntime(config));
                    break;

                case VisiblityExpectConfig config:
                    newStep.Expectations.Add(new VisiblityExpectRuntime(config));
                    break;
                }
            }
        }
Ejemplo n.º 4
0
 internal void configureLoggers(StepConfig step, StepRuntime newStep)
 {
     foreach (var logger in step.BeforeLog)
     {
         switch (logger)
         {
         case LogMessageActionConfig config:
             newStep.BeforeLog.Add(new LogMessageActionRuntime(config));
             break;
         }
     }
     foreach (var logger in step.AfterLog)
     {
         switch (logger)
         {
         case LogMessageActionConfig config:
             newStep.AfterLog.Add(new LogMessageActionRuntime(config));
             break;
         }
     }
 }
Ejemplo n.º 5
0
        internal void configureActions(StepConfig step, StepRuntime newStep)
        {
            foreach (var act in step.Actions)
            {
                switch (act)
                {
                case ClickActionConfig config:
                    newStep.Actions.Add(new ClickActionRuntime(config));
                    break;

                case EnterTextActionConfig config:
                    newStep.Actions.Add(new EnterTextActionRuntime(config));
                    break;

                case FormSubmitActionConfig config:
                    newStep.Actions.Add(new FormSubmitActionRuntime(config));
                    break;

                case LogMessageActionConfig config:
                    newStep.Actions.Add(new LogMessageActionRuntime(config));
                    break;

                case SpecialKeyActionConfig config:
                    newStep.Actions.Add(new SpecialKeyActionRuntime(config));
                    break;

                case WaitForVisibilityActionConfig config:
                    newStep.Actions.Add(new WaitForVisibilityActionRuntime(config));
                    break;

                case MultipleTextActionConfig config:
                    newStep.Actions.Add(new MultipleTextActionRuntime(config));
                    break;
                }
            }
        }