From a594f4418884402949d32ffd653bd56eef615996 Mon Sep 17 00:00:00 2001 From: Maxime Rainville Date: Tue, 24 Sep 2019 15:29:11 +1200 Subject: [PATCH] Rename click-oneoof-these-buttons method --- src/Context/BasicContext.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Context/BasicContext.php b/src/Context/BasicContext.php index 3883644..1b3ae49 100644 --- a/src/Context/BasicContext.php +++ b/src/Context/BasicContext.php @@ -443,10 +443,10 @@ JS; } /** - * @Given /^I press one of these buttons "([^"]*)"$/ + * @Given /^I press the "([^"]*)" buttons$/ * @param string $text A list of button names can be provided by seperating the entries with the | character. */ - public function stepIPressOneOfTheseButtons($text) + public function stepIPressTheButtons($text) { $buttonNames = explode('|', $text); foreach ($buttonNames as $name) {