public void Run()
        {
            foreach (var automationFlow in _automationFlows)
            {
                var runner = new AutomationFlowRunner(_options);

                runner.AppendFlow(automationFlow);

                runner.Execute();
            }
        }
        public void SetUp()
        {
            _options = new AutomationFlowRunnerOptions(() => new FakeWebDriver())
            {
                MaxAllowedStepFailCount = 4
            };

            _runner = new AutomationFlowRunner(_options);
        }