public HtmlRow(UITestControl parent) : base(parent) { SearchProperties.Add(HtmlRow.PropertyNames.TagName, "tr"); RulesDictionary.Add(HtmlRow.PropertyNames.RowIndex, ByRowIndex); }
public HtmlCellBase(UITestControl parent) : base(parent) { SearchProperties.Add(HtmlControl.PropertyNames.TagName, "td"); RulesDictionary.Add(HtmlCell.PropertyNames.ColumnIndex, ByColumnIndex); RulesDictionary.Add(HtmlCell.PropertyNames.RowIndex, ByRowIndex); }
protected HtmlTextControl(UITestControl parent) : base(parent) { RulesDictionary.Add(HtmlTextArea.PropertyNames.LabeledBy, ByLabeledBy); }