사용자 정의 키워드는 파이썬 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"
실마리가 있습니까?
여러 개의 인수를 제공하는 방법이나 개행 문자가 포함 된 긴 인수를 묻는 중입니까? 질문 제목과 본문이 서로 다른 두 가지 질문을하는 것 같습니다. –