Find a block instance on the page.
\Drupal\block\Plugin\Core\Entity\Block $block: The block entity to find on the page.
array The result from the xpath query.
protected function findBlockInstance(Block $block) {
$config_id = explode('.', $block
->id());
$machine_name = array_pop($config_id);
return $this
->xpath('//div[@id = :id]', array(
':id' => 'block-' . $machine_name,
));
}