Exemple #1
0
 public void WhenIClickFinishButtonInQueryRunWizardPage()
 {
     if (!BP_QueryRunWizardUtilities.ClickFinishButton())
     {
         ScenarioContext.Current["ActResult"] = "Failed";
     }
 }
Exemple #2
0
 public void WhenIEnterInSearchField_(string SearchValue, string FieldName)
 {
     if (!BP_QueryRunWizardUtilities.EnterValueInSearchField(FieldName, SearchValue))
     {
         ScenarioContext.Current["ActResult"] = "Failed";
         ScenarioContext.Current["Comments"]  = "Search criteria is not eneterd in the search field.";
     }
 }
Exemple #3
0
        public void WhenISelectCheckboxForTheQueryAndVersionFromTheQueryRunWizardPage_(string QueryName, Decimal Version)
        {
            string ver = Version.ToString();

            if (!BP_QueryRunWizardUtilities.SelectQueryOnRunWizardPage(QueryName, ver))
            {
                ScenarioContext.Current["ActResult"] = "Failed";
                ScenarioContext.Current["Comments"]  = "Query is not selected to proceed.";
            }
        }