AuScGen.TestExecutionUtil.TestExecute.DoStep C# (CSharp) Method

DoStep() public method

public DoStep ( System.Action action ) : void
action System.Action
return void
        public void DoStep(Action action)
        {
            try
            {
                action();
            }
            finally
            {
                Print.ScreenPrint();
            }
            //Telerik.ActiveBrowser.Capture().Save(@".\TC02_NavigateToAccountBalancePage\Image" + Guid.NewGuid() + ".png");
        }

Same methods

TestExecute::DoStep ( string message, System.Action action ) : void