예제 #1
0
        public static AutomationFramework Init()
        {
            var af = new AutomationFramework();

            af.Driver.Navigate().GoToUrl("https://cafetownsend-angular-rails.herokuapp.com/login");
            return(af);
        }
예제 #2
0
        public Actions(AutomationFramework af)
        {
            if (af == null)
            {
                throw new ArgumentNullException("af");
            }

            _Framework = af;
        }
예제 #3
0
 public void Setup()
 {
     _Framework = AutomationFramework.Init();
     _Actions   = new Actions(_Framework);
 }
예제 #4
0
 public void Setup()
 {
     framework = AutomationFramework.Init();
 }