Sylius\Behat\Page\Shop\HomePageInterface::switchLocale PHP Method

switchLocale() public method

public switchLocale ( string $localeCode )
$localeCode string
    public function switchLocale($localeCode);

Usage Example

Esempio n. 1
0
 /**
  * @When I switch to the :localeName locale
  * @When I change my locale to :localeName
  */
 public function iSwitchTheLocaleToTheLocale($localeName)
 {
     $this->homePage->open();
     $this->homePage->switchLocale($localeName);
 }