Test filesverification/TestModule/Test/ActionGroupTest/ActionGroupWithSectionAndDataAsArguments.xml
") */ class ActionGroupWithSectionAndDataAsArgumentsCest { /** * @var bool */ private $isSuccess = false; /** * @param AcceptanceTester $I * @throws \Exception */ public function _after(AcceptanceTester $I) { if ($this->isSuccess) { unlink(__FILE__); } } /** * @Features({"TestModule"}) * @param AcceptanceTester $I * @return void * @throws \Exception */ public function ActionGroupWithSectionAndDataAsArguments(AcceptanceTester $I) { $I->comment("Entering Action Group [actionGroup] actionGroupWithSectionAndData"); $I->waitForElementVisible("#element .John", 10); // stepKey: arg1ActionGroup $I->comment("Exiting Action Group [actionGroup] actionGroupWithSectionAndData"); } public function _passed(AcceptanceTester $I) { // Test passed successfully. $this->isSuccess = true; } }