Пример #1
0
        public HtmlRow(UITestControl parent)
            : base(parent)
        {
            SearchProperties.Add(HtmlRow.PropertyNames.TagName, "tr");

            RulesDictionary.Add(HtmlRow.PropertyNames.RowIndex, ByRowIndex);
        }
Пример #2
0
        public HtmlCellBase(UITestControl parent)
            : base(parent)
        {
            SearchProperties.Add(HtmlControl.PropertyNames.TagName, "td");

            RulesDictionary.Add(HtmlCell.PropertyNames.ColumnIndex, ByColumnIndex);
            RulesDictionary.Add(HtmlCell.PropertyNames.RowIndex, ByRowIndex);
        }
Пример #3
0
 protected HtmlTextControl(UITestControl parent)
     : base(parent)
 {
     RulesDictionary.Add(HtmlTextArea.PropertyNames.LabeledBy, ByLabeledBy);
 }