Example #1
0
 public string GetTextInBodyCellAtIndex(short bodyRowIndex, short bodyCellIndex)
 => BodyRows?.ElementAtOrDefault(bodyRowIndex)?.BodyCells?.ElementAtOrDefault(bodyCellIndex)?.Text;
Example #2
0
 public void SendTextToBodyCellAtIndex(short bodyRowIndex, short bodyCellIndex, string text)
 => BodyRows.ElementAtOrDefault(bodyRowIndex).BodyCells.ElementAtOrDefault(bodyCellIndex).SendKeys(text);
Example #3
0
 public WebElement GetWebElementInBodyCellAtIndex(short bodyRowIndex, short bodyCellIndex)
 => BodyRows?.ElementAtOrDefault(bodyRowIndex)?.BodyCells?.ElementAtOrDefault(bodyCellIndex);