码迷,mamicode.com
首页 > 其他好文 > 详细

从excel中取data,预期值

时间:2017-04-01 11:10:20      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:char   else   url   style   数据   table   content   request   type   

excel中放入预期值,上报data数据

excel中第一行是data数据,第二行是预期值

在每个class中,取data数据上报到接口中,具体代码如下:

def getpost2():
data=xlrd.open_workbook(‘D:\\test.xlsx‘)
table=data.sheets()[0]
nrows=table.nrows
for i in range(nrows):
postdata=table.cell(i,0).value
yq=table.cell(i,1).value
url=‘http://******************************‘
header={‘Content-Type‘ : ‘application/xml‘,‘charset‘:‘UTF-8‘}
response=requests.post(url,data=postdata,headers=header)
if yq in response.text:
print ‘pass‘
else:print ‘faild‘

说明:若第一行为列明,则for循环中的range为(1,nrows)

从excel中取data,预期值

标签:char   else   url   style   数据   table   content   request   type   

原文地址:http://www.cnblogs.com/344525813xiang/p/6655043.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!