I'm using python and Gauge framework. I need to perform some action in @after_scenario only when scenario fails.
I've tried to dig in the framework in search of related property and I found following one:
Scenario.is_failing
After printing it on a console in after_scenario I woud expect true/false, but instead of this I can see:
<property object at 0x000002600477F060>
Could you please explain me why is that and what can I do to get simple true/false?