You are here

protected function CommerceReportsUITestCase::_getLinks in Commerce Reporting 7.4

File

src/Tests/CommerceReportsUITestCase.php, line 18

Class

CommerceReportsUITestCase
Class CommerceReportsUITestCase

Namespace

Drupal\commerce_reports\Tests

Code

protected function _getLinks($label) {
  $links = $this
    ->xpath('//a[normalize-space(text())=:label]', array(
    ':label' => $label,
  ));
  return $links;
}