Skip to content
Permalink
5fe72033bd
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
23 lines (20 sloc) 640 Bytes
*** Settings ***
Library RequestsLibrary
*** Keywords ***
Get
[Arguments] ${uri}
Create Session alias=md url=http://md.sandbox.ti.internet2.edu
${resp}= Get Request alias=md uri=${uri}
[Return] ${resp}
Get With Gzip
[Arguments] ${uri}
Create Session alias=md url=http://md.sandbox.ti.internet2.edu
&{headers}= Create Dictionary Accept-Encoding=gzip
${resp}= Get Request alias=md uri=${uri} headers=&{headers}
[Return] ${resp}
Head
[Arguments] ${uri}
Log ${uri}
Create Session alias=md url=http://md.sandbox.ti.internet2.edu
${resp}= Head Request alias=md uri=${uri}
[Return] ${resp}