Exemple #1
0
 /**
  * Find a block instance on the page.
  *
  * @param \Drupal\block\Entity\Block $block
  *   The block entity to find on the page.
  *
  * @return array
  *   The result from the xpath query.
  */
 protected function findBlockInstance(Block $block)
 {
     return $this->xpath('//div[@id = :id]', array(':id' => 'block-' . $block->id()));
 }