You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
step "First thing" do
# something
end
step "First thing and something else" do
execute "First thing"
end
But I get undefined method 'name' for "First thing":String because #execute calls step.name. How is #execute supposed to be called if not like above? And if I'm completely misusing execute, what should you do to call one step from another? (I don't want to have to underscore it myself)