在terrain.py中,我对此进行了设置
@before.each_feature
def init(feature):
feature.context.delme = "UPANDDOWN"
现在在我的场景步骤中,我想读取此值。我该怎么做。如果我这样做。
@given ('Apple and orange')
def checkapple(step):
print step.context.delme
它给出错误AttributeError:'Context'对象没有属性'delme'