You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
544 B
13 lines
544 B
*** Settings ***
|
|
Library RequestsLibrary
|
|
Library Collections
|
|
Library urllib3
|
|
|
|
*** Test Cases ***
|
|
customer_get_capacity_commodity_list
|
|
Disable Warnings
|
|
Create Session yytclient ${yytclient} headers=${cloudfactory_customer_header}
|
|
${response} Get On Session yytclient /capacity-market/get/capacity-commodity-page
|
|
log ${response.json()}
|
|
Should Be Equal As Numbers 200 ${response.status_code}
|
|
Should Be Equal As Strings successful ${response.json()["message"]}
|