//Populate the script lists here. Follow the example on how to add to a list #region Populate Tests /// <summary> /// Use this method to populate the lists. They are already set to be selected from the /// CycleScripts method and no other work is required. /// </summary> public override void PopulateLists() { SignIn.Clear(); AccountCreation.Clear(); Registration.Clear(); SoftwareUpdates.Clear(); Navigation.Clear(); MapUpdates.Clear(); base.PopulateLists(); //**below is a sample of how to add in a test. Simply add in the name of the test in replace of Connect_SignIn //SignIn.Add(new Connect_SignIn(base.baseURL, base.webdriver, base.verificationErrors)); // SignIn.Add(new prototype(base.baseURL, base.webdriver, base.verificationErrors)); //This Test was to investigate Selenium RC - Webdriver opted for due to usability/port setting issues/future support. Navigation.Add(new Buy_PurchaseTest(base.baseURL, base.webdriver, base.verificationErrors)); }
//Populate the script lists here. Follow the example on how to add to a list #region Populate Tests /// <summary> /// Use this method to populate the lists. They are already set to be selected from the /// CycleScripts method and no other work is required. /// </summary> public override void PopulateLists() { SignIn.Clear(); AccountCreation.Clear(); Tracker.Clear(); Registration.Clear(); SoftwareUpdates.Clear(); Blackberry.Clear(); MapUpdates.Clear(); Navigation.Clear(); base.PopulateLists(); //**below is a sample of how to add in a test. Simply add in the name of the test in replace of Connect_SignIn //SignIn.Add(new Connect_SignIn(base.baseURL, base.webdriver, base.verificationErrors)); SignIn.Add(new MyGarmin_SignIn(base.baseURL, base.webdriver, base.verificationErrors)); }