PMA_SeleniumBase::getCellByTableClass PHP Method

getCellByTableClass() public method

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