get(2); $secondPage->html = "

Hello, This is a test

This is a second block of content

"; $secondPage->save(); $this->asAdmin()->visit($page->getUrl()) ->dontSee('Hello, This is a test'); $originalHtml = $page->html; $page->html .= "{{@{$secondPage->id}}}"; $page->save(); $this->asAdmin()->visit($page->getUrl()) ->see('Hello, This is a test') ->see('This is a second block of content'); $page->html = $originalHtml . " Well {{@{$secondPage->id}#section2}}"; $page->save(); $this->asAdmin()->visit($page->getUrl()) ->dontSee('Hello, This is a test') ->see('Well This is a second block of content'); } }