[Cucumber] how to get name from scenario hook?

Hi,

Given the hook:

After do |scenario|

end

How do I get the name of the scenario from the scenario parameter?

scenario.name doesn’t work, and I looked through the source code and
it was not immediately obvious to me.

Thanks

to_sexp should do it for now, but I’ll file a ticket as #name would be
useful.

Thanks

scenario.name doesn’t work, and I looked through the source code and
it was not immediately obvious to me.

You can call to_sexp on it and get it from there. Or you can file a
Lighthouse ticket if you want the #name accessor.

filed the ticket, as it turns out that the name is not available in
the sexp for scenario outlines.

Thanks