private ApplicationManager()
 {
     driver       = new FirefoxDriver();
     baseURL      = "http://localhost/";
     Registration = new RegistrationHelper(this);
     Ftp          = new FtpHelper(this);
     James        = new JamesHelper(this);
     Mail         = new MailHelper(this);
 }
Example #2
0
 private ApplicationManager()
 {
     driver       = new FirefoxDriver();
     baseURL      = "http://localhost/mantisbt-1/2/17";
     Registration = new RegistrationHelper(this);
     Ftp          = new FtpHelper(this);
     Login        = new LoginHelper(this);
     Menu         = new ManagementMenuHelper(this);
     Project      = new ProjectManagementHelper(this);
     Admin        = new AdminHelper(this, baseURL);
     API          = new APIHelper(this);
 }
 private ApplicationManager()
 {
     driver         = new FirefoxDriver();
     baseURL        = "http://localhost/";
     Registration   = new RegistrationHelper(this);
     Ftp            = new FtpHelper(this);
     loginHelper    = new LoginHelper(this);
     James          = new JamesHelper(this);
     Mail           = new MailHelper(this);
     Project        = new ProjectHelper(this);
     ManagementMenu = new ManagementMenuHelper(this, baseURL);
     API            = new APIHelper(this);
 }
Example #4
0
        private ApplicationManager()
        {
            FirefoxOptions options = new FirefoxOptions();

            options.UseLegacyImplementation   = true;
            options.BrowserExecutableLocation = @"C:\Program Files\Mozilla Firefox\firefox.exe";
            driver       = new FirefoxDriver(options);
            baseURL      = "http://localhost";
            Registration = new RegistrationHelper(this);
            //Ftp = new FtpHelper(this);
            Auth             = new LoginHelper(this);
            MenuManagment    = new ManagmentMenuHelper(this);
            ProjectManagment = new ProjectManagmentHelper(this);
            Navigator        = new NavigationHelper(this);
            API = new APIHelper(this);
        }
Example #5
0
        private ApplicationManager()
        {
            FirefoxOptions options = new FirefoxOptions();

            options.BrowserExecutableLocation = @"C:\Program Files\Mozilla Firefox\firefox.exe";
            options.UseLegacyImplementation   = true;
            driver        = new FirefoxDriver(options);
            baseURL       = "http://localhost/mantisbt-2.12.0";
            Registration  = new RegistrationHelper(this);
            Ftp           = new FtpHelper(this);
            James         = new JamesHelper(this);
            Mail          = new MailHelper(this);
            loginHelper   = new LoginHelper(this);
            projectHelper = new ProjectHelper(this);
            Admin         = new AdminHelper(this, baseURL);
            Api           = new ApiHelper(this);
        }