protected function WebTestBase::findBlockInstance in SimpleTest 8.3
Find a block instance on the page.
Parameters
\Drupal\block\Entity\Block $block: The block entity to find on the page.
Return value
array The result from the xpath query.
2 calls to WebTestBase::findBlockInstance()
- WebTestBase::assertBlockAppears in src/
WebTestBase.php - Checks to see whether a block appears on the page.
- WebTestBase::assertNoBlockAppears in src/
WebTestBase.php - Checks to see whether a block does not appears on the page.
File
- src/
WebTestBase.php, line 258
Class
- WebTestBase
- Test case for typical Drupal tests.
Namespace
Drupal\simpletestCode
protected function findBlockInstance(Block $block) {
return $this
->xpath('//div[@id = :id]', [
':id' => 'block-' . $block
->id(),
]);
}