Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
test
autotest-airtest-web-cmdc
Commits
3e2c4631
Commit
3e2c4631
authored
Feb 04, 2024
by
liguangyu06
Browse files
优化
parent
6419ccd1
Changes
3
Hide whitespace changes
Inline
Side-by-side
air_case/cmdc_trade/查询条件验证_发货单列表.air/查询条件验证_发货单列表.py
View file @
3e2c4631
...
...
@@ -15,8 +15,8 @@ import json
module
=
"cmdc_trade"
# 第一步登录后台运营系统获取token信息
username
=
commonFuc
().
get_business_data
(
module
,
"username
1
"
)
password
=
commonFuc
().
get_business_data
(
module
,
"password
1
"
)
username
=
commonFuc
().
get_business_data
(
module
,
"username
4
"
)
password
=
commonFuc
().
get_business_data
(
module
,
"password
4
"
)
# 获取登录后Cmdc_access_token
cmdc_access_token
=
CmdcDoLogin
(
username
,
password
).
get_token
()
headers
=
commonFuc
().
get_business_data
(
module
,
"json_headers"
,
cmdc_access_token
)
...
...
@@ -44,17 +44,17 @@ out_random = random.randint(0, len(result["data"]["list"]) - 1)
SDDOCO
=
func
(
result
[
"data"
][
"list"
][
out_random
][
"SDDOCO"
])
customerCode
=
func
(
result
[
"data"
][
"list"
][
out_random
][
"customerCode"
])
customerName
=
func
(
result
[
"data"
][
"list"
][
out_random
][
"customerName"
])
demandCode
=
result
[
"data"
][
"list"
][
out_random
][
"demandCode"
]
demandCode
=
func
(
result
[
"data"
][
"list"
][
out_random
][
"demandCode"
]
)
productCode
=
func
(
result
[
"data"
][
"list"
][
out_random
][
"productCode"
])
optionStr
=
func
(
result
[
"data"
][
"list"
][
out_random
][
"optionStr"
])
materialCode
=
func
(
result
[
"data"
][
"list"
][
out_random
][
"materialCode"
])
demandParentCode
=
result
[
"data"
][
"list"
][
out_random
][
"demandParentCode"
]
demandParentCode
=
func
(
result
[
"data"
][
"list"
][
out_random
][
"demandParentCode"
]
)
invoiceNo
=
func
(
result
[
"data"
][
"list"
][
out_random
][
"invoiceNo"
])
productLineName
=
result
[
"data"
][
"list"
][
out_random
][
"productLineName"
]
projectName
=
result
[
"data"
][
"list"
][
out_random
][
"projectName"
]
sddcto
=
result
[
"data"
][
"list"
][
out_random
][
"sddcto"
]
distributionType
=
result
[
"data"
][
"list"
][
out_random
][
"distributionType"
]
demandSubCode
=
result
[
"data"
][
"list"
][
out_random
][
"demandSubCode"
]
productLineName
=
func
(
result
[
"data"
][
"list"
][
out_random
][
"productLineName"
]
)
projectName
=
func
(
result
[
"data"
][
"list"
][
out_random
][
"projectName"
]
)
sddcto
=
func
(
result
[
"data"
][
"list"
][
out_random
][
"sddcto"
]
)
distributionType
=
func
(
result
[
"data"
][
"list"
][
out_random
][
"distributionType"
]
)
demandSubCode
=
func
(
result
[
"data"
][
"list"
][
out_random
][
"demandSubCode"
]
)
# 第三步进行条件查询
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url27"
)
...
...
@@ -63,7 +63,7 @@ request_body = commonFuc().get_business_data(module, "payload27", SDDOCO, custom
optionStr
,
materialCode
,
demandParentCode
,
invoiceNo
,
productLineName
,
projectName
,
sddcto
,
distributionType
,
demandSubCode
)
#
print(request_body)
print
(
request_body
)
"""
场景: 查询条件验证_发货单列表
...
...
@@ -76,7 +76,7 @@ result = requests.post(url, json=request_body, headers=headers)
# 获取接口响应时间
api_time
=
float
(
result
.
elapsed
.
total_seconds
())
result
=
json
.
loads
(
result
.
content
)
#
print(result)
print
(
result
)
# 获取demandCode
result
=
{
"demandCode"
:
result
[
"data"
][
"list"
][
0
][
"demandCode"
]}
...
...
air_case/cmdc_trade/获取发货单详情.air/获取发货单详情.py
View file @
3e2c4631
...
...
@@ -15,8 +15,8 @@ import json
module
=
"cmdc_trade"
# 第一步登录后台运营系统获取token信息
username
=
commonFuc
().
get_business_data
(
module
,
"username
1
"
)
password
=
commonFuc
().
get_business_data
(
module
,
"password
1
"
)
username
=
commonFuc
().
get_business_data
(
module
,
"username
4
"
)
password
=
commonFuc
().
get_business_data
(
module
,
"password
4
"
)
# 获取登录后Cmdc_access_token
cmdc_access_token
=
CmdcDoLogin
(
username
,
password
).
get_token
()
headers
=
commonFuc
().
get_business_data
(
module
,
"json_headers"
,
cmdc_access_token
)
...
...
data/cmdc_trade/data
View file @
3e2c4631
...
...
@@ -12,6 +12,8 @@
"username1": "Admin00111"
"password1": "Aa123456"
"username4": "Admin00102"
"password4": "Aa123456"
#后台管理系统headers
json_headers: {
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment