I create a gherkin scenario and implement mandatory method in the AcceptanceTester
class in tests/_support/AcceptanceTester.php
file.
From this file, I want to use _after
method to execute some stuff after my tests are executed.
If I am in a Cest
File, I can use _after
method, but from the AcceptanceTester
file this method is never called.
Why? How can I resolve this problem?