Beispiel #1
0
 public void Setup()
 {
     Initialize();
     Driver.Navigate().GoToUrl("http://automationpractice.com/index.php");
     _autoPracticeFormPage = new AutoPracticeFormPage(Driver);
     _user = AutoPracticeFormFactory.Create();
 }
        public void SetUp()
        {
            Initialize();
            Driver.Navigate().GoToUrl("http://automationpractice.com/index.php");
            Driver.Manage().Window.Maximize();
            autoPracticePage = new AutoPracticePage(Driver);
            Builder          = new Actions(Driver);

            user    = AutoPracticeFormFactory.CreateUser();
            fixture = new Fixture();
        }