Exemplo n.º 1
0
        public void ClickDropDownListElement(UITestControl parent, string value)
        {
            HtmlListItem button = new HtmlListItem(parent);

            button.SearchProperties.Add(HtmlListItem.PropertyNames.ValueAttribute, value);
            button.Select();


            //HtmlListItem html_listItem = new HtmlListItem(HtmlComboBox);
            //html_listItem.SearchProperties.Add(HtmlListItem.PropertyNames.ValueAttribute, str_Value);
            //html_listItem.Select();
        }