Ejemplo n.º 1
0
 public void WhenIClickOnAcceptAllButtonInSignCasebookPage()
 {
     if (!BP_SignCasebookUtilities.ClickAcceptAllButton())
     {
         ScenarioContext.Current["ActResult"] = "Failed";
     }
 }
Ejemplo n.º 2
0
 public void WhenIGivenUsernameAsInSignCasebookPage(String userName)
 {
     if (!BP_SignCasebookUtilities.SetUserName(userName))
     {
         ScenarioContext.Current["ActResult"] = "Failed";
     }
 }
Ejemplo n.º 3
0
 public void WhenIGivenPasswordAsInSignCasebookPage(String password)
 {
     if (!BP_SignCasebookUtilities.SetPassword(password))
     {
         ScenarioContext.Current["ActResult"] = "Failed";
     }
 }
Ejemplo n.º 4
0
        public void WhenISelectRadioButtonForBelowFormsInSignCasebookPage(Table table)
        {
            IEnumerable <SignCasebookData> dataList = table.CreateSet <SignCasebookData>();

            if (!BP_SignCasebookUtilities.SelectForm((List <SignCasebookData>)dataList))
            {
                ScenarioContext.Current["ActResult"] = "Failed";
            }
        }