/** * @Then I should be notified that tax rate with this code already exists */ public function iShouldBeNotifiedThatTaxRateWithThisCodeAlreadyExists() { Assert::true($this->createPage->checkValidationMessageFor('code', 'The tax rate with given code already exists.'), 'Unique code violation message should appear on page, but it does not.'); }
/** * @Given I choose "Included in price" option */ public function iChooseOption() { $this->createPage->chooseIncludedInPrice(); }