カスタムキーワードは、Python 2.7で書かれて:カスタム書かれたRobot Frameworkキーワードに複数の引数を渡すには?
以下に示すように、予想通り、我々は、単一の行にその作業をparemetersを送信@keyword("Update ${filename} with ${properties}")
def set_multiple_test_properties(self, filename, properties):
for each in values.split(","):
each = each.replace(" ", "")
key, value = each.split("=")
self.set_test_properties(filename, key, value)
:
"Update sample.txt with "test.update=11,timeout=20,delay.seconds=10,maxUntouchedTime=10"
をしかし、我々は新しいと上記の行を変更する場合行(読みやすくするため)は機能しません。
Update sample.txt with "test.update = 11,
timeout=20,
delay.seconds=10,
maxUntouchedTime=10"
これに関する手掛かりはありますか?
複数の引数を指定する方法や、改行が埋め込まれた長い引数について質問していますか?あなたの質問のタイトルと本文は、2つの異なる質問をしているようです。 –