示例#1
0
        public void SetColorKendoColorPickerCustomControl()
        {
            manager.ActiveBrowser.NavigateTo("http://demos.telerik.com/kendo-ui/colorpicker/index");
            KendoColorPicker kendoColorPicker = new KendoColorPicker("colorpicker");

            kendoColorPicker.SetColor("ccc");
        }
    public void SetColorKendoColorPickerCustomControl()
    {
        _driver.Navigate().GoToUrl("http://demos.telerik.com/kendo-ui/colorpicker/index");
        var kendoColorPicker = new KendoColorPicker(_driver, "picker");

        kendoColorPicker.SetColor("ccc");
    }