Example #1
0
        protected void makeSelectSelectionWithChange(Browser browser, string name, string id, string option)
        {
            string     methodName = "makeSelectSelectionWithChange";
            SelectList selectList = browser.SelectList(Find.ByName(name) && Find.ById(id));

            selectList.Select(option);
            selectList.ForceChange();
            Library.WriteLog(methodName, string.Format("Setting {0}: {1}", name, option));
        }