PMA_SeleniumBase::getCellByTableId PHP Method

getCellByTableId() public method

Get table cell data by the ID of the table
public getCellByTableId ( string $tableID, integer $row, integer $column ) : text
$tableID string Table identifier
$row integer Table row
$column integer Table column
return text Data from the particular table cell
    public function getCellByTableId($tableID, $row, $column)
    {
        $sel = "table#{$tableID} tbody tr:nth-child({$row}) " . "td:nth-child({$column})";
        $element = $this->byCssSelector($sel);
        return $element->text();
    }