Skip to content
Permalink
5ee1eca40a
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
22 lines (19 sloc) 699 Bytes
*** Settings ***
Library RequestsLibrary
*** Keywords ***
Get All Entities
[Arguments] ${baseUrl}
Create Session alias=md url=${baseUrl}
${resp}= Get Request alias=md uri=entities
[Return] ${resp}
Get Entity
[Arguments] ${baseUrl} ${identifier}
Create Session alias=md url=${baseUrl} debug=1
${resp}= Get Request alias=md uri=/entities/${identifier}
[Return] ${resp}
Get Entity With Gzip
[Arguments] ${baseUrl} ${identifier}
Create Session alias=md url=${baseUrl}
&{headers}= Create Dictionary Accept-Encoding=gzip
${resp}= Get Request alias=md uri=entities/${identifier} headers=&{headers}
[Return] ${resp}