open_excel E:\\XX.xls
${row_count} Get Row Count excel里面的sheet名称
log ${row_count}
#读出excel有几列
@{read_columnC} Get Column Values S{clounm} 2 #得到C列的数据
@{read_columnD} Get Column Values S{clounm} 3 #得到D列的数据
@{read_columnE} Get Column Values S{clounm} 4 #得到E列的数据
@{read_columnF} Get Column Values S{clounm} 5 #得到F列的数据
@{read_columnG} Get Column Values S{clounm} 6 #得到G列的数据
${ulr} Set Global Variable ${read_columnC[${1}][${1}]} #得到url
log ${ulr}
${path} Set Global Variable ${read_columnD[${1}][${1}]} #得到api的path路径
log ${path}
${method_egg} Set Global Variable ${read_columnE[${1}][${1}]} #得到请求的方法Post?get
log ${method_egg}
${body_egg} Set Global Variable ${read_columnG[${1}][${1}]} #得到body参数
log ${body_egg}
${request_body} Set Global Variable ${body_egg}
log ${request_body}
附上对应的excel内容:
excel格式如下:
excel的sheet页的名字:sheet1
内容:
url path method header body