We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 194276e commit cb59c15Copy full SHA for cb59c15
1 file changed
Framework/Built_In_Automation/Sequential_Actions/lorust_performance_action.py
@@ -112,6 +112,12 @@ def find_row_by(
112
#
113
# "Empty"
114
body = "Empty"
115
+ elif body[0].strip() == "Raw: json":
116
+ # This is a convenience (special) case for #2 mentioned below,
117
+ # for passing json data.
118
+ body = {
119
+ "Raw": json.dumps(CommonUtil.parse_value_into_object(body[2])),
120
+ }
121
else:
122
# 2. Raw string - mostly used with the "Content-Type" header having the values:
123
# application/json
0 commit comments