Sylius\Behat\Page\Shop\HomePage::getContents PHP Method

getContents() public method

public getContents ( )
    public function getContents()
    {
        return $this->getDocument()->getContent();
    }

Usage Example

Example #1
0
 /**
  * @Then I should not see a homepage from :theme theme
  */
 public function iShouldNotSeeThemedHomepage(ThemeInterface $theme)
 {
     $content = file_get_contents(rtrim($theme->getPath(), '/') . '/SyliusWebBundle/views/Frontend/Homepage/main.html.twig');
     expect($this->homePage->getContents())->notToBe($content);
 }