Overrides CoreDriver::getText
public function getText(string $xpath) { $node = $this->findElement($xpath); $text = $node->text(); $text = (string) str_replace(array( "\r", "\r\n", "\n", ), ' ', $text); return $text; }