Esempio n. 1
0
 public void WhenIClickOnTheParametersSubTab()
 {
     if (!BP_DS_ScriptingUtilities.Clickonparameter())
     {
         ScenarioContext.Current["ActResult"] = "Failed";
     }
 }
Esempio n. 2
0
 public void WhenIClickOnUserSeesThePage(string QueryPage)
 {
     if (!BP_DS_ScriptingUtilities.VerifyThePageLoaded(QueryPage))
     {
         ScenarioContext.Current["ActResult"] = "Failed";
     }
 }
Esempio n. 3
0
        public void ThenUserShouldSeeTheBelowValuesInTestvalueDropdown(Table table)
        {
            IEnumerable <DropDownInfo> dropdown = table.CreateSet <DropDownInfo>();

            if (!BP_DS_ScriptingUtilities.VerifyTestCaseDropDownValues((List <DropDownInfo>)dropdown))
            {
                ScenarioContext.Current["ActResult"] = "Failed";
            }
        }