コード例 #1
0
 public void BeforeScenario()
 {
     //Following Variable needs to be filled accordingly for each Test Method. Do not have spaces within Module & Test name
     //******************************************************************************************************
     Reporter.strCurrentModule = "Manager_Account";
     Reporter.strCurrentScenarioID = "SC1";
     Reporter.strCurrentTestID = "TC1";
     Reporter.strCurrentTestDesc = "Create New Customer";
     //*******************************************************************************************************
     //Default Reporting function call for Test Method. Please do not REMOVE this functions calls
     Reporter.HTML_TestCase_Initialize();
     LoginPage oLoginPage = new LoginPage();
     oLoginPage.launchApplication();
 }
コード例 #2
0
 public void SetAppLaunch(){
     LoginPage oLoginPage = new LoginPage();
     oLoginPage.launchApplication();
 }