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

switchCurrency() public method

public switchCurrency ( $currencyCode )
    public function switchCurrency($currencyCode)
    {
        try {
            $this->getElement('currency_selector')->click();
            // Needed for javascript scenarios
        } catch (UnsupportedDriverActionException $exception) {
        }
        $this->getElement('currency_selector')->clickLink($currencyCode);
    }