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