Exemple #1
0
        public void SelectDistributorDDL(string DistributorValue)
        {
            var kendoDDL = new KendoDropDownList(DistributorPt);

            kendoDDL.Select(DistributorValue);
            Console.WriteLine(" Selected the option from dropdown list");
        }
Exemple #2
0
        public void SelectProgramTypesDDL(string ProgramValue)
        {
            var kendoDDL = new KendoDropDownList(ProgramTypes);

            kendoDDL.Select(ProgramValue);
            Console.WriteLine(" Selected the option from dropdown list");
        }
Exemple #3
0
        //Method for By Others//
        public void TemplateDDL(string TempName)
        {
            var kendoDDL = new KendoDropDownList(TemplateN);

            kendoDDL.Select(TempName);
            Console.WriteLine(" Selected the option from dropdown list");
        }
Exemple #4
0
        public void SelectTemplateDDLSearch(string template)
        {
            var kendoDDL = new KendoDropDownList(templateddl);

            kendoDDL.Select(template);
            Console.WriteLine("Template is the default value");
        }
Exemple #5
0
        //Method for By User//
        public void SelectUserDDLValue(string UserValue)
        {
            var kendoDDL = new KendoDropDownList(UserDDL);

            kendoDDL.Select(UserValue);
            Console.WriteLine(" Selected the option from dropdown list");
        }
Exemple #6
0
        public void SelectUserDDLValue2(string UserValue2)
        {
            var kendoDDL = new KendoDropDownList(SavedSearchddl);

            kendoDDL.Select(UserValue2);
            Console.WriteLine(" Select the option from dropdown list");
        }
Exemple #7
0
        //Method for Contract id dropdown//
        public void SelectAdContractidDDL(string ContractID)
        {
            var kendoDDL = new KendoDropDownList(Contractidtype);

            kendoDDL.Select(ContractID);
            Console.WriteLine("Option selected from contract dropdown list");
        }
Exemple #8
0
        //Method for Contract Name Textboxx//
        public void SelectContractTypeDDL(string contracttype)
        {
            var kendoDDL = new KendoDropDownList(ContractTypeAdSearch);

            kendoDDL.Select(contracttype);
            Console.WriteLine("Option selected from contract dropdown list");
        }
Exemple #9
0
        public void SelectProgramDDLSearch(string programTypes)
        {
            var kendoDDL = new KendoDropDownList(Programtypesddl);

            kendoDDL.Select(programTypes);
            Console.WriteLine("Program Types is the default value");
        }
Exemple #10
0
        public void SelectStatusDDLSearch(string status)
        {
            var kendoDDL = new KendoDropDownList(Statusddl);

            kendoDDL.Select(status);
            Console.WriteLine("Contract Status is the default value");
        }
Exemple #11
0
        public void SelectClaimsDDL(string ClaimsValue)
        {
            var kendoDDL = new KendoDropDownList(Claims);

            kendoDDL.Select(ClaimsValue);
            Console.WriteLine(" Selected the option from dropdown list");
        }
Exemple #12
0
        public void SelectContracteeDDL(string ContracteeValue)
        {
            var kendoDDL = new KendoDropDownList(ContracteePt);

            kendoDDL.Select(ContracteeValue);
            Console.WriteLine(" Selected the option from dropdown list");
        }
Exemple #13
0
        //Method for SavedSearch Dropdownlist//
        public void SelectSavedSearchDDL(string savedsearch)
        {
            Hooks.Driver.WaitForJQuery(100);
            SavedSearchddl.WaitForElementToLoad(100);
            var kendoDDL = new KendoDropDownList(SavedSearchddl);

            kendoDDL.Select(savedsearch);
            Console.WriteLine(" Select the option from dropdown list");
        }
Exemple #14
0
        private static void TestControl <TPage>(KendoDropDownList <TPage> control)
            where TPage : PageObject <TPage>
        {
            control.Should.BeEnabled();
            control.Should.Not.BeReadOnly();

            control.Set("Large");
            control.Should.Equal("Large");

            control.Set("Small");
            control.Should.Equal("Small");
        }
Exemple #15
0
        public void SelectContractIdDDLSearch(string ContractID)
        {
            var kendoDDL = new KendoDropDownList(Contractsddl);

            kendoDDL.Select(ContractID);
        }
Exemple #16
0
        public void SelectDateTypeDDL(string date)
        {
            var kendoDDL = new KendoDropDownList(DateType);

            kendoDDL.Select(date);
        }
Exemple #17
0
        public void SelectActionedDDL(string actiontype)
        {
            var kendoDDL = new KendoDropDownList(ActionedType);

            kendoDDL.Select(actiontype);
        }
Exemple #18
0
        public void SelectStatusDDDL(string statustypes)
        {
            var kendoDDL = new KendoDropDownList(Status);

            kendoDDL.Select(statustypes);
        }
Exemple #19
0
        //Method for comment Search//
        public void SelectCommentSearchTypeDDL(string commentstypes)
        {
            var kendoDDL = new KendoDropDownList(CommentSearchTypes);

            kendoDDL.Select(commentstypes);
        }
Exemple #20
0
        public void SelectManufacturesDDL(string manufactureName)
        {
            var kendoDDL = new KendoDropDownList(ddlManufacturers);

            kendoDDL.Select(manufactureName);
        }