. * */ use Behat\Behat\Context\Context; class FeatureContext implements Context, ActorAwareInterface { use ActorAware; /** * @When I visit the Home page */ public function iVisitTheHomePage() { $this->actor->getSession()->visit($this->actor->locatePath("/")); } }