コード例 #1
0
        public void Run()
        {
            foreach (var automationFlow in _automationFlows)
            {
                var runner = new AutomationFlowRunner(_options);

                runner.AppendFlow(automationFlow);

                runner.Execute();
            }
        }
コード例 #2
0
        public void SetUp()
        {
            _options = new AutomationFlowRunnerOptions(() => new FakeWebDriver())
            {
                MaxAllowedStepFailCount = 4
            };

            _runner = new AutomationFlowRunner(_options);
        }