예제 #1
0
 public void ThenIValidateOfTheCustomer(string strName, string strCity, string strState, string strCountry, string strOrg, string strJob, string strAddInfo)
 {
     SeleniumUtility.fnValidateCustDetails(strName, strCity, strState, strCountry, strOrg, strJob, strAddInfo);
 }
예제 #2
0
 public void WhenIClickOnButtonForCustomer(string strName)
 {
     SeleniumUtility.fnClickOnBtn(strName);
 }
예제 #3
0
 public void ThenIVerifyDetailsOfTheCustomerAreDisplayed(string strName)
 {
     SeleniumUtility.fnVerifyCustDetailsAreDisplayed(strName);
 }
예제 #4
0
 public void ThenCloseTheBrowser()
 {
     SeleniumUtility.fnCloseBrowser();
 }
예제 #5
0
 public void ThenIVerifyAreDisplayed(string strName, string strEmail, string strPhNum)
 {
     SeleniumUtility.fnVerifyCustDetails(strName, strEmail, strPhNum);
 }
예제 #6
0
 public void ThenVerifyPageIsOpened(string strTitle)
 {
     SeleniumUtility.fnVerifyPageOpened(strTitle);
 }
예제 #7
0
 public void WhenEnterWebsite(string strURL)
 {
     SeleniumUtility.fnOpenUrl(strURL);
 }
예제 #8
0
 public void GivenLaunch(string strBrowserType)
 {
     SeleniumUtility.fnGetDriver(strBrowserType);
 }