Esempio n. 1
0
 public MemberList(IWebDriver driver)
 {
     this._driver          = driver;
     this._userLoginLogout = new UserLoginLogout(_driver);
     this._utilsValidation = new DriverUtilitiesValidation(_driver);
     this._userData        = new UserData();
 }
 public UserLoginLogout(IWebDriver driver)
 {
     this._driver          = driver;
     this._utilsValidation = new DriverUtilitiesValidation(_driver);
     this._pageValidation  = new PageValidation(_driver);
     this._userData        = new UserData();
 }
Esempio n. 3
0
 public void SetUp()
 {
     this._driver          = new FirefoxDriver();
     this._utilsValidation = new DriverUtilitiesValidation(_driver);
     _utilsValidation.ImplicitWait(10);
     System.IO.Directory.SetCurrentDirectory(TestContext.CurrentContext.WorkDirectory);
 }
Esempio n. 4
0
 public MemberListTestScript(IWebDriver driver)
 {
     this._driver          = driver;
     this._results         = new Result();
     this._memberList      = new MemberList(_driver);
     this._pageValidation  = new PageValidation(_driver);
     this._utilsValidation = new DriverUtilitiesValidation(_driver);
 }
 public SearchForTestScript(IWebDriver driver)
 {
     this._driver          = driver;
     this._results         = new Result();
     this._searchFor       = new SearchFor(_driver);
     this._pageValidation  = new PageValidation(_driver);
     this._utilsValidation = new DriverUtilitiesValidation(_driver);
     this._userData        = new UserData();
     this._recData         = new RecommenderData();
     this._schoolData      = new SchoolData();
 }
 public PageValidation(IWebDriver driver)
 {
     this._driver          = driver;
     this._driverUtils     = new DriverUtilities(_driver);
     this._utilsValidation = new DriverUtilitiesValidation(_driver);
 }