Test filesverification/TestModule/Test/ActionGroupFunctionalTest/BasicActionGroupTest.xml
") */ class BasicActionGroupTestCest { /** * @var bool */ private $isSuccess = false; /** * @param AcceptanceTester $I * @throws \Exception */ public function _before(AcceptanceTester $I) { $I->comment('[START BEFORE HOOK]'); $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"); $I->comment('[END BEFORE HOOK]'); } /** * @param AcceptanceTester $I * @throws \Exception */ public function _after(AcceptanceTester $I) { if ($this->isSuccess) { unlink(__FILE__); } } /** * @Severity(level = SeverityLevel::CRITICAL) * @Features({"TestModule"}) * @Stories({"MQE-433"}) * @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 } public function _passed(AcceptanceTester $I) { // Test passed successfully. $this->isSuccess = true; } }