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

switchCurrency() public method

public switchCurrency ( string $currencyCode )
$currencyCode string
    public function switchCurrency($currencyCode);

Usage Example

Example #1
0
 /**
  * @When I switch to the :currencyCode currency
  * @When I change my currency to :currencyCode
  */
 public function iSwitchTheCurrencyToTheCurrency($currencyCode)
 {
     $this->homePage->open();
     $this->homePage->switchCurrency($currencyCode);
 }