"Check HTTP Response Status Code Is" method is implemented differently
Check HTTP Response Status Code Is
[Arguments] ${expected_status}
Should Be Equal ${response.status_code} ${expected_status}
Log Status code validated
Expects response to be an object with status_code attribute.
===========================================================================
Check HTTP Response Status Code Is
[Arguments] ${expected_status}
Should Be Equal ${response['status']} ${expected_status}
Log Status code validated
Expects response to be an dict with status attribute.