0
Robot Framework에서 변수에 JSON 데이터 파일을 직접로드하려고합니다. 누구든지 예를 들어 그것을 수행하는 방법에 대한 정확한 구문을 제공합니까?json 데이터 파일을 로봇 프레임 워크의 변수에로드하는 방법! with
Robot Framework에서 변수에 JSON 데이터 파일을 직접로드하려고합니다. 누구든지 예를 들어 그것을 수행하는 방법에 대한 정확한 구문을 제공합니까?json 데이터 파일을 로봇 프레임 워크의 변수에로드하는 방법! with
설치 HTTPLibrary : RF 코드
from HttpLibrary import HTTP
class JsonLib(object):
def load_json_data_from_file(self, filepath):
""" Don't forget to document the keyword!!!
"""
json_string = open(filepath).read()
HTTP().should_be_valid_json(json_string)
return json_string
가져 오기를하고 그것을 전화 : https://github.com/peritus/robotframework-httplibrary
JsonLib.py
만들기
*** Settings ***
Library JsonLib.py
*** Test Cases ***
Do Whatever With My Json
[Documentation] Don't forget to document what your test does!!!
${my_json} Load JSON Data From File ${/}foo{/}bar.json
을 방법에 대한 파일 경로의 형식 Windows에서? – Kion
아 ... 생각하지 못했습니다 ... RF 의사에 따라 수정 됨 –
*** 설정 *** 라이브러리 JsonLib.py *** 테스트 케이스 *** Do My With With My Json [Documentation] 테스트의 내용을 기록하는 것을 잊지 마십시오 !!! $ {my_json} 파일에서 JSON 데이터로드 ./cookie.json – Kion