You are here

protected function CommerceReportsUITestCase::_getLinks in Commerce Reporting 7.3

1 call to CommerceReportsUITestCase::_getLinks()
CommerceReportsUITestCase::testMenuIntegration in tests/commerce_reports.test

File

tests/commerce_reports.test, line 153
Unit tests for the commerce reports module.

Class

CommerceReportsUITestCase

Code

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