Test filesverification/TestModule/Test/ActionGroupFunctionalTest/BasicActionGroupTest.xml
") */ class BasicActionGroupTestCest { /** * @param AcceptanceTester $I * @throws \Exception */ public function _before(AcceptanceTester $I) { $I->createEntity("createPersonParam", "hook", "ReplacementPerson", [], []); // stepKey: createPersonParam $I->comment("Entering Action Group [beforeGroup] FunctionalActionGroup"); $I->fillField("#foo", "myData1"); // stepKey: fillField1BeforeGroup $I->fillField("#bar", "myData2"); // stepKey: fillField2BeforeGroup $I->comment("Exiting Action Group [beforeGroup] FunctionalActionGroup"); } /** * @Severity(level = SeverityLevel::CRITICAL) * @Features({"TestModule"}) * @Stories({"MQE-433"}) * @Parameter(name = "AcceptanceTester", value="$I") * @param AcceptanceTester $I * @return void * @throws \Exception */ public function BasicActionGroupTest(AcceptanceTester $I) { $I->amOnPage("/someUrl"); // stepKey: step1 $I->comment("Entering Action Group [actionGroup1] FunctionalActionGroup"); $I->fillField("#foo", "myData1"); // stepKey: fillField1ActionGroup1 $I->fillField("#bar", "myData2"); // stepKey: fillField2ActionGroup1 $I->comment("Exiting Action Group [actionGroup1] FunctionalActionGroup"); $I->click("loginButton"); // stepKey: step6 } }