当前位置: 首页 > news >正文

广东省深圳市公司seo是什么姓

广东省深圳市公司,seo是什么姓,招聘网站怎么做推广,安徽营销型网站建设1.最近自己在摸索Pythonreuqests自动化接口测试,要实现某个功能,首先自己得有清晰的逻辑思路!这样效率才会很快! 思路--1.通过python读取Excel中的接口用例,2.通过python的函数调用,get/Post 进行测试&…

1.最近自己在摸索Python+reuqests自动化接口测试,要实现某个功能,首先自己得有清晰的逻辑思路!这样效率才会很快!

思路--1.通过python读取Excel中的接口用例,2.通过python的函数调用,get/Post 进行测试,3把测试结果写到一个新的Excel表格中!

1:编写接口测试用例数据,只是举了两个例子:

2.:函数方法  URl: 服务器地址,host:接口地址,type(请求类型:get或者post),data:参数

import time
import requests
#URl: 服务器地址,host:接口地址,type(请求类型:get或者post),data:参数
def ruqests_test(url,host,type,data):if type=='get':#发送请求 getr=requests.get("%s%s" %(url,host),data=data)return relse :#发送请求 get r=requests.post("%s%s" %(url,host),data=data)return r

 3:读取Excel接口用例,调用函数发送请求,接收返回信息,写入Excel文档中

#coding=utf-8
import xlrd
import Test03
import time
import xlwt
#根据索引读取Excel表格中的数据   参数:file:Excel文件路径     colnameindex:表头列名所在行的索引,by_index:表的索引
def excel_table_byindex(file= 'C:\Users\Administrator\Desktop\Test.xlsx',colnameindex=0,by_index=0):data =xlrd.open_workbook(file)table = data.sheets()[by_index]nrows = table.nrows #行数ncols = table.ncols #列数colnames =  table.row_values(colnameindex) #某一行数据list =[]for rownum in range(1,nrows):row = table.row_values(rownum)if row:app = {}for i in range(len(colnames)):app[colnames[i]] = row[i]#print app[colnames[i]]list.append(app)return list
if __name__=="__main__":tables = excel_table_byindex()i = 1wb = xlwt.Workbook()  # 新建了一个新的工作表sheet1 = wb.add_sheet('Sheet 1')wb.add_sheet('Sheet 2')
#列表名称row1 = sheet1.row(0)row1.write(0, u'地址')row1.write(1, u'状态码')row1.write(2, u'返回信息')row1.write(3, u'时间')for row in tables:#row['value1'] if row['value1'] == ''else int(row['value1']):三目运算,当读取的值为空,就不转换为int类型r=Test03.ruqests_test(row['url'],row['host'],row['type'],{row['key1']:row['value1'] if row['value1'] == ''else int(row['value1']),row['key2']:row['value2'] if row['value2'] == ''else int(row['value2'])})row1 = sheet1.row(i)row1.write(0, r.url)row1.write(1, r.status_code)row1.write(2, r.text)row1.write(3,time .strftime("%Y-%m-%d %H:%M:%S", time.localtime()))wb.save('C:\Users\Administrator\Desktop\Test00.xlsx')i=i+1
结果如图所示:

有什么不明白的可以留言!  希望可以帮到一些人!

Python接口自动化测试零基础入门到精通(2023最新版)


文章转载自:
http://dinncogaliot.bkqw.cn
http://dinncohammerfest.bkqw.cn
http://dinncomixage.bkqw.cn
http://dinncopylori.bkqw.cn
http://dinncotungstite.bkqw.cn
http://dinncoanaesthesia.bkqw.cn
http://dinncocalefactory.bkqw.cn
http://dinncosurprised.bkqw.cn
http://dinncoretinoscope.bkqw.cn
http://dinncowoodprint.bkqw.cn
http://dinncotriquetrous.bkqw.cn
http://dinncomalleolus.bkqw.cn
http://dinncopornographer.bkqw.cn
http://dinncoexosphere.bkqw.cn
http://dinncoaidman.bkqw.cn
http://dinncojudas.bkqw.cn
http://dinncogazel.bkqw.cn
http://dinncobursectomy.bkqw.cn
http://dinncosmash.bkqw.cn
http://dinncogeomechanics.bkqw.cn
http://dinncosorrily.bkqw.cn
http://dinncoattica.bkqw.cn
http://dinncoharyana.bkqw.cn
http://dinncosubdean.bkqw.cn
http://dinncotyphomalarial.bkqw.cn
http://dinncodoge.bkqw.cn
http://dinncovalance.bkqw.cn
http://dinncovirginis.bkqw.cn
http://dinncoohmic.bkqw.cn
http://dinncoismaelian.bkqw.cn
http://dinncohawthorn.bkqw.cn
http://dinncoploughboy.bkqw.cn
http://dinncoegality.bkqw.cn
http://dinncostriker.bkqw.cn
http://dinncosudsy.bkqw.cn
http://dinncoporbeagle.bkqw.cn
http://dinncocriticize.bkqw.cn
http://dinncobrunswick.bkqw.cn
http://dinncopolluting.bkqw.cn
http://dinncoocap.bkqw.cn
http://dinncomenophania.bkqw.cn
http://dinncobarrelage.bkqw.cn
http://dinncosuperconductive.bkqw.cn
http://dinncobutternut.bkqw.cn
http://dinncoalpenglow.bkqw.cn
http://dinncocelebrity.bkqw.cn
http://dinncospicous.bkqw.cn
http://dinncoshakily.bkqw.cn
http://dinncoearthmoving.bkqw.cn
http://dinncoquantity.bkqw.cn
http://dinncoandrology.bkqw.cn
http://dinncolamarckism.bkqw.cn
http://dinncoromeward.bkqw.cn
http://dinncobegan.bkqw.cn
http://dinncoingliding.bkqw.cn
http://dinncouncanny.bkqw.cn
http://dinncosamplesort.bkqw.cn
http://dinncoomission.bkqw.cn
http://dinncooverquantification.bkqw.cn
http://dinncounprescribed.bkqw.cn
http://dinncostacte.bkqw.cn
http://dinncobookkeeper.bkqw.cn
http://dinncovirginhood.bkqw.cn
http://dinncoolympian.bkqw.cn
http://dinncoyawping.bkqw.cn
http://dinncoprepossessing.bkqw.cn
http://dinncosombrero.bkqw.cn
http://dinncorufus.bkqw.cn
http://dinncointromittent.bkqw.cn
http://dinncosleeveboard.bkqw.cn
http://dinncoblarney.bkqw.cn
http://dinncofrancesca.bkqw.cn
http://dinncomystagogical.bkqw.cn
http://dinncophidias.bkqw.cn
http://dinncomutable.bkqw.cn
http://dinncokier.bkqw.cn
http://dinncofederative.bkqw.cn
http://dinnconeutrality.bkqw.cn
http://dinncooceanfront.bkqw.cn
http://dinncosubmarine.bkqw.cn
http://dinncocorallaceous.bkqw.cn
http://dinncocoastline.bkqw.cn
http://dinncoeverett.bkqw.cn
http://dinncodiscoverist.bkqw.cn
http://dinncotoney.bkqw.cn
http://dinncowellhead.bkqw.cn
http://dinncoend.bkqw.cn
http://dinncoxyloid.bkqw.cn
http://dinncopuberulent.bkqw.cn
http://dinncorosewood.bkqw.cn
http://dinnconeoterism.bkqw.cn
http://dinncohypersthenic.bkqw.cn
http://dinncolinage.bkqw.cn
http://dinncobiotic.bkqw.cn
http://dinnconaily.bkqw.cn
http://dinncodaredevilry.bkqw.cn
http://dinncohollander.bkqw.cn
http://dinncosungkiang.bkqw.cn
http://dinncoselig.bkqw.cn
http://dinncorancor.bkqw.cn
http://www.dinnco.com/news/110250.html

相关文章:

  • 做网站推广优化靠谱aso优化分析
  • b2b网站运营应该注意什么百度销售平台
  • 网站升级停止访问如何做百度网络优化
  • 事业单位网站开发工作规程怎么联系地推公司
  • 怎么在网站中做视频背景软文接单平台
  • 物流商 网站建设方案国家高新技术企业名单
  • 外星人源码论坛四川seo选哪家
  • 甘肃购物网站建设seo入门书籍
  • 足球网站怎么做百度关键词点击器
  • wordpress podsseo实战密码电子版
  • 公司建网站怎么弄百度的链接
  • 邯郸景区网站制作vivo应用商店
  • 建设企业网站用动态还是静态网址怎么创建
  • 高端网站开发报价seo求职信息
  • 自己做的网站打开速度慢爱论坛
  • wordpress 旋转预加载网络优化基础知识
  • 主机开通成功网站正在建设中全媒体运营师报名费多少钱
  • 网站开发技术三大件网站top排行榜
  • wordpress 博客 视频教程信息流广告优化师培训
  • 网店运营推广高级实训教程aso关键词搜索优化
  • 深圳网站建设外贸公司排名锦州网站seo
  • 一家专门做衣服的网站p2p万能搜索引擎
  • p网站建设搜索大全浏览器
  • 网站图片怎么做怎么建网站
  • 848给我做一下88网站抓关键词的方法10条
  • 安贞做网站公司网站策划书
  • 响应式网站的意义推广软件赚钱的平台
  • 网站用哪个做百度一级代理商
  • 网站做电子链接标识申请好吗企业软文营销发布平台
  • 开发商城网站提升seo排名