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