Ejemplo n.º 1
0
        public CommonSteps()
        {
            app      = FeatureContext.Current.Get <IWebDriver>("App");
            MainMenu = FeatureContext.Current.Get <IMainMenuScreen>(ScreenNames.MainMenu);

            _stepBase = new StepBase();
        }
Ejemplo n.º 2
0
 public StepBase()
 {
     app            = FeatureContext.Current.Get <IWebDriver>("App");
     MainMenuScreen = FeatureContext.Current.Get <IMainMenuScreen>(ScreenNames.MainMenu);
     AddTaskScreen  = FeatureContext.Current.Get <IAddTaskScreen>(ScreenNames.AddTask);
 }