/** * @Then the last promotion on the list should have :field :value */ public function theLastPromotionOnTheListShouldHave($field, $value) { $fields = $this->indexPage->getColumnFields($field); $actualValue = end($fields); Assert::same($actualValue, $value, sprintf('Expected last promotion\'s %s to be "%s", but it is "%s".', $field, $value, $actualValue)); }