Test filesverification/TestModule/Test/ActionGroupTest/ActionGroupWithSimpleDataUsageFromDefaultArgument.xml
") */ class ActionGroupWithSimpleDataUsageFromDefaultArgumentCest { /** * @var bool */ private $isSuccess = false; /** * @param AcceptanceTester $I * @throws \Exception */ public function _after(AcceptanceTester $I) { if ($this->isSuccess) { unlink(__FILE__); } } /** * @Severity(level = SeverityLevel::CRITICAL) * @Features({"TestModule"}) * @param AcceptanceTester $I * @return void * @throws \Exception */ public function ActionGroupWithSimpleDataUsageFromDefaultArgument(AcceptanceTester $I) { $I->comment("Entering Action Group [actionGroup] actionGroupWithStringUsage"); $I->see("stringLiteral", "#element .stringLiteral"); // stepKey: see1ActionGroup $I->comment("Exiting Action Group [actionGroup] actionGroupWithStringUsage"); } public function _passed(AcceptanceTester $I) { // Test passed successfully. $this->isSuccess = true; } }