Inheritance: ContainerElement
Ejemplo n.º 1
0
 /// <summary>Initializes a new instance of the <see cref="TableCellElement"/> class.</summary>
 /// <param name="webElement">The web element. </param>
 /// <param name="parent">The parent row. </param>
 /// <param name="index">The index. </param>
 public TableCellElement(IWebElement webElement, TableRowElement parent, int index)
     : base(webElement)
 {
     this.ParentRow = parent;
     this.Index     = index;
 }
Ejemplo n.º 2
0
 /// <summary>Initializes a new instance of the <see cref="TableCellElement"/> class.</summary>
 /// <param name="webElement">The web element. </param>
 /// <param name="parent">The parent row. </param>
 /// <param name="index">The index. </param>
 public TableCellElement(IWebElement webElement, TableRowElement parent, int index)
     : base(webElement)
 {
     this.ParentRow = parent;
     this.Index = index;
 }