我有一个包含帐号和个人资料详情的表单。
我可以验证帐号字段,但我无法从个人资料详细信息中验证任何必填字段。我已经profileContract
使用{
"accountNO": "123456",
"profileContract": {
"businessTypeEnum": "MASTER_ACCOUNT",
"masterName": "test data",
}
}
我尝试在谷歌上搜索但我没有找到任何正确的答案。任何帮助将不胜感激。我使用了反应形式。
from docx import Document
def table_test_automation(table):
for row in table.rows:
row_heading = row.cells[9].text
if row_heading != 'Test Type':
continue
Black_box = row.cells[1].text
return 1 if Black_box == 'Black Box' else 0
return 0
document = Document('VRRPv3-PEGASUS.docx')
yes_count = 0
for table in document.tables:
yes_count += table_test_automation(table)
print("Total No Of Black_box:",yes_count)
JSON数据将如下所示。