amOnPage("/firstUrl"); $I->amOnPage("/beforeUrl"); $I->amOnPage("/lastUrl"); } /** * @param AcceptanceTester $I * @throws \Exception */ public function _after(AcceptanceTester $I) { $I->amOnPage("/afterUrl"); } /** * @param AcceptanceTester $I * @throws \Exception */ public function _failed(AcceptanceTester $I) { $I->saveScreenshot(); } /** * @Severity(level = SeverityLevel::TRIVIAL) * @Features({"TestModule"}) * @Stories({"Child"}) * @Parameter(name = "AcceptanceTester", value="$I") * @param AcceptanceTester $I * @return void * @throws \Exception */ public function ChildExtendedTestMerging(AcceptanceTester $I) { $I->comment("Before Comment"); $I->comment("Parent Comment"); $I->comment("After Comment"); $I->comment("Last Comment"); } }