01、接口测试

(1)服务器端(server):在使用别人的服务器上,例如微信APP客户端,服务端在腾讯的服务端上,微信上的账号信息,聊天记录均存储在服务端上;用户A发送1条信息到服务端上,服务端再把这条信息转发到用户B上。

服务器使用的语言分别为:Java、Python、PHP、Go、C、C++等等

(2)客户端(client):手机上的APP,网站

客户端使用的语言分别为:object-c(IOS)、Android、HTML、CSS、JS等等

(3)接口:通过客户端与服务端进行交互的

(4)这么多种类的语言,造成无法识别,需要通用的数据类型进行解析:json{},没有json之前用的XML格式

XML :通用的数据类型

接口测试</p><p><content>服务器与客户端需要接口进行交互</content></p><p>JSON :通用的数据类型,以一种键值对来展示: </p><p>{</p><p>"title" : "接口测试",</p><p>"content" : "服务器与客户端需要接口进行交</p><p>}</p><p>现在我也找了很多测试的朋友,做了一个分享技术的交流群,共享了很多我们收集的技术文档和视频教程。</p><p>如果你不想再体验自学时找不到资源,没人解答问题,坚持几天便放弃的感受</p><p>可以加入我们一起交流。而且还有很多在自动化,性能,安全,测试开发等等方面有一定建树的技术大牛</p><p>分享他们的经验,还会分享很多直播讲座和技术沙龙</p><p>可以免费学习!划重点!开源的!!!</p><p>qq群号:691998057【暗号:csdn999】 </p><p>02、如何测试接口 </p><p>1、接口:是由客户端和服务器来进行交互的,以及接口返回的数据一般都是json格式的数据类型。 </p><p>2、接口测试基本步骤如下: </p><p>在接口文档中或者其它地方,拿到接口的URL地址查看接口是用什么方式发生请求(例如:get和post请求)添加请求头,请求体发送查看返回结果,校验返回结果是否正确 </p><p>3、打开接口文档(参考:http://doc.nnzhp.cn) </p><p>(1)URL </p><p>(2)请求方式 </p><p>(3)请求参数 </p><p>(4)get请求 </p><p>在浏览器上,直接输入接口文档中的请求URL:http://api.nnzhp.cn/api/user/stu_info,页面报错提示“必填参数未填写!请查看接口文档!”(如图所示) </p><p>基于上面中的url链接中不带必填参数报错,故需在URL中补上必填参数:http://api.nnzhp.cn/api/user/stu_info?stu_name=%E5%B0%8F%E6%98%8E </p><p>机器学习PAI控制台:https://pai.data.aliyun.com/console?regionId=ap-southeast-1&commodityId=&projectId=&deployFrom=&modelPath=&type=#/eas有多个必填参数时,需要在URL中添加其他必填参数用“&”拼接,例如:http://api.nnzhp.cn/api/user/stu_info?stu_name=%E5%B0%8F%E6%98%8E&age=25 </p><p>(5)post请求 </p><p>复制URL在浏览器打开,报错“请求方式错误!请查看接口文档”,例如如图显示 </p><p>这时候需要借助postman接口工具进行测试,前提条件:需要本地安装postman应用软件(注意:如果是POST请求,选择Params填写参数,这时URL中会自动带上该参数信息,这种请求方式应该是GET请求方式而不是POST请求,如图:) </p><p>POST请求,应该选择Body选项,勾选“form-data”或者“x-www-form-urlencoded”填写必填参数,如图所示: </p><p>POST请求,用户注册,如图: </p><p>POST请求,入参为json类型,如图: </p><p>查询是否存在该学生信息: </p><p>POST请求,Body选择form-data,Key由Text切换File格式,进行文件上传,(注意:x-www-form-urlencoded没有File格式,只有Text选项,不能上传多媒体文件)如图: </p><p>4、浏览器进行抓包 </p><p>(1)浏览器打开检查或者开发者工具,再或者检查元素等控制台 </p><p>(2)一般查看调用接口Network(网络)下面的XHR调用了哪些接口 </p><p>(3)请求url:https://qun.qq.com/cgi-bin/qunwelcome/myinfo?callback=?&bkn=682554596 </p><p>(4)利用Postman接口工具进行调用接口:get_group_list </p><p>(5)接口search_group_members ,多个参数进行接口测试: </p><p>(6)cookie和session </p><p>保存时间:根据需要设定保存位置:客户端保存时间:用户活动时间+一段延迟时间(登录时提示用户保存时间7天时间)保存位置:服务器端cookie:在浏览器存放自己本地信息数据的一个键值对(key-value)的地方session:存放在服务端的一个键值对 </p><p>5、GET请求方式和POST请求方式的区别: </p><p>(1)GET请求没有请求体,只要请求头和URL:host/api/xxx?name=xxx </p><p>(2)POST请求是有请求头、请求体 </p><p>(3)GET请求没有POST请求安全 </p><p>(4)GET请求有参数长度限制,POST没有 </p><p>03、postman接口自动化 </p><p>1、测试银行项目、金融项目会遇到加密参数,需要: (1)参数去掉加密 </p><p>(2)提供一个工具,产生加密后的参数 </p><p>(3)自己了解加密算法,然后自己加密 </p><p>2、Postman中手动配置环境变量: </p><p>(1)在Postman中,有Environment和Environment,用于实现不同环境的管理,不同服务器环境分别为: </p><p>Production 生产环境Development 开发环境Local 本地局域网环境 </p><p>(2)环境快速查看,如图1所示 : </p><p>(3)使用Environment实现多服务版本管理,点击右上角的设置,点击【Manage Environments】,和图2所示: </p><p>(4)在弹窗【MANAGE ENVIRONMENTS】界面中,右下角点击“Add”,如图: </p><p>(5)在“Add Environment”中,填写变量名和变量值 ,如图: </p><p>(6)配置好变量名称和变量值后,可以在请求URL中进行参数化: </p><p>(6)编写脚本,脚本参数化,如同 </p><p>(7)点击runner,配置运行参数,如同: </p><p>(8)查看最后的运行结果,状态码为200 ok,表示运行成功,如图: </p><p>图中有个字段是:“This requests does not have any tests.” </p><p>需要检查: </p><p>第一步:检查是否变量名称是否对应; </p><p>第二步:是否点击了保存,再点击Runner </p><p>第三步:是否添加了校验 </p><p>(9)添加校验,设置检查 </p><p>(10) postman断言: </p><p>(11) 点击【Tests】按钮,右边栏有个snippets栏,里面是postman内置的测试脚本,辅助接口测试: </p><p>A:判断状态码 </p><p>Status code : Code is 200 </p><p>  对应的脚本: </p><p> pm.test("Status code is 200", function () { pm.response.to.have.status(200); );</p><p>B:返回的response包含内容 </p><p>Response body : Containing string </p><p>对应的脚本: </p><p> pm.test("Body matches string", function () {</p><p> pm.expect(pm.response.text()).to.include("string_you_want_to_search");</p><p> });</p><p>C:返回的json数据中的值 </p><p>Response body : JSON value check </p><p>对应的脚本为: </p><p>pm.test("Your test name", function () {</p><p> var jsonData = pm.response.json();</p><p> pm.expect(jsonData.value).to.eql(100);</p><p> });</p><p>D:响应的内容等于一个字符串 </p><p>Response body : is equal to a string </p><p>  对应的脚本: </p><p> pm.test("Content-Type is present", function () {</p><p> pm.response.to.have.header("Content-Type");</p><p> });</p><p>E:检查响应头中是否有Content-Type字段 </p><p>Response headers : Content-Type header check </p><p>  对应的脚本: </p><p> pm.test("Response time is less than 200ms", function () {</p><p> pm.expect(pm.response.responseTime).to.be.below(200);</p><p> });</p><p>F:判断响应的时间少于200MS </p><p>Response time is less than 200ms </p><p>对应的脚本: </p><p>pm.test("Response time is less than 200ms", function () { pm.expect(pm.response.responseTime).to.be.below(200); });</p><p>(12)新建集合便于将个别请求进行分组,如图: </p><p>04、HTTP </p><p>1、http和https的不同之处: </p><p>安全性不同: </p><p>http:普通的http请求,,信息明文传输信息,不安全; </p><p>https:具有安全性的ssl加密传输协议,为浏览器和服务器之间的通信加密,确保数据传输的安全; </p><p>连接方式不同: </p><p>http的连接很简单,是无状态的; </p><p>https是由SSL+HTTP协议构建的可进行加密传输、身份认证的网络协议; </p><p>端口不同: </p><p>http协议:使用的端口是80; </p><p>https协议:使用的端口是443; </p><p>证书申请方式不同: </p><p>http协议:免费申请; </p><p>https协议:需要到ca申请证书,一般免费证书很少,需要交费。 </p><p>2、一般完整的URL为:http://192.168.13.3:80 host/ip:port/api/user/add_stu uri </p><p>3、接口HTTP参数 </p><p>get --- 通过请求URL得到资源POST --- 用于添加新的内容PUT ---用于修改某个内容DELETE---删除某个内容CONNECT---用于代理进行传输,如使用SSLOPTIONS---询问可以执行哪些方法PATCH---部分文档更改PROPFIND(WebDAV)---查看属性PROPPATCH(WebDAV)---设置属性MKCOL(WebDAV)---创建集合(文件夹)COPY(WebDAV)---拷贝MOVE(WebDAV)---移动LOCK(WebDAV)---加锁UNLOCK(WebDAV)---解锁TRACE ---用于远程诊断服务器HEAD --- 类似于GET,但是不返回body信息,用于检查对象是否存在,以及得到对象的元数据请求头包含许多有关客户端环境和请求正文的又用信息。如图所示:例如语言种类和状态码 </p><p>json 格式xml 格式html 格式二进制格式(多用于图片)字符串格式http请求方式:http请求头(headers)http请求体(body):请求体即为请求等正文。 </p><p>4、用户接口可以通过以下4种不同方式的请求来做不同的事情: </p><p>(1)获取数据,用“GET”方式,成功了返回HTTP状态码:200 </p><p>(2)创建数据,用“POST”方式,成功了返回HTTP状态码:201 </p><p>(3)修改数据,用“PUT”方式,成功了返回HTTP状态码:203 </p><p>(4)删除数据,用“DELETE”方式,成功了返回HTTP状态码:204 </p><p>5、HTTP状态吗: </p><p>(1)请求消息(1字头)例如:100 Continue(请继续) </p><p>(2)请求成功 (2字头)例如:200 OK(请求已成功) </p><p>(3) 重定向 (3字头)例如:300 Multiple Choice(多项选择,会返回一个选项列表) </p><p>(4) 客户端请求错误 (4字头)例如:400 Bad Request (错误请求) 403 Forbidden(禁止) 404 Not Found(没有找到) </p><p>(5)服务器错误(5、6字开头)例如:500 Internal Server(内部错误) 502 Bad Gateway(代理或者网关下一链路收到未响应) </p><p>详细查看HTTP状态码、HTTP Status Code、HTTP常见状态码查询:https://tool.oschina.net/commons?type=5 </p><p>下面是配套资料,对于做【软件测试】的朋友来说应该是最全面最完整的备战仓库,这个仓库也陪伴我走过了最艰难的路程,希望也能帮助到你! </p><p>最后: 可以在公众号:自动化测试老司机 ! 免费领取一份216页软件测试工程师面试宝典文档资料。以及相对应的视频学习教程免费分享!,其中包括了有基础知识、Linux必备、Shell、互联网程序原理、Mysql数据库、抓包工具专题、接口测试工具、测试进阶-Python编程、Web自动化测试、APP自动化测试、接口自动化测试、测试高级持续集成、测试架构开发测试框架、性能测试、安全测试等。 </p><p>如果我的博客对你有帮助、如果你喜欢我的博客内容,请 “点赞” “评论” “收藏” 一键三连哦!</p><p>精彩内容</p><div class="ly_isview_code_1"><div class="ly_isview_codea" data-id="714029905"><span><a href="https://www.kuazhi.com/zb_system/login.php" target="_blank">评论可见</a>,请评论后查看内容,谢谢!!!评论后请刷新页面。</span></div></div><div class="zk_article_recommendation"> <div class="recommendation-title">大家都在看:</div> <div class="recommendation-list"> <div class="zk-a-item"> <a href="https://www.kuazhi.com/post/712785541.html"> <p class="zk-a-t" style="margin: 3px 0;"><strong><span class="highlight" style="color:#f73131;">测试工具</span> python 单元<span class="highlight" style="color:#f73131;">测试</span> <span class="highlight" style="color:#f73131;">selenium</span> <span class="highlight" style="color:#f73131;">自动化测试</span> 一文1600字使用<span class="highlight" style="color:#f73131;">Postman</span>搞定各种接口token<span class="highlight" style="color:#f73131;">实战</span>(建议收藏)</strong></p> <p class="zk-a-i"> 现在许多项目都使用jwt来<span class="highlight" style="color:#f73131;">实</span>现用户登录和数据权限,校验过用户的用户名和密码后,会向用户响应一段经过加密的token,在这段token中可能储存了数据权限等,在后期的访问中,需要携带这段token,后台... </p> </a> </div> <div class="zk-a-item"> <a href="https://www.kuazhi.com/post/712799236.html"> <p class="zk-a-t" style="margin: 3px 0;"><strong><span class="highlight" style="color:#f73131;">selenium</span> <span class="highlight" style="color:#f73131;">测试工具</span> <span class="highlight" style="color:#f73131;">自动化测试</span> 一文5个步骤从0到1<span class="highlight" style="color:#f73131;">实</span>现<span class="highlight" style="color:#f73131;">Jmeter</span>分布式<span class="highlight" style="color:#f73131;">压力测试</span>(建议收藏)</strong></p> <p class="zk-a-i"> 之前写过用<span class="highlight" style="color:#f73131;">jmeter</span>做接口<span class="highlight" style="color:#f73131;">测试</span>的文章,本篇我们继续介绍下用<span class="highlight" style="color:#f73131;">jmeter</span>做分布式<span class="highlight" style="color:#f73131;">压力测试</span>的例子。 用<span class="highlight" style="color:#f73131;">jmeter</span>做<span class="highlight" style="color:#f73131;">压力测试</span>,如果只用一台机器,有鉴于线<span class="highlight" style="color:#f73131;">程</span>数的限制和一台机器的性能,可能无法满足<span class="highlight" style="color:#f73131;">压力测试</span>的... </p> </a> </div> <div class="zk-a-item"> <a href="https://www.kuazhi.com/post/712803565.html"> <p class="zk-a-t" style="margin: 3px 0;"><strong><span class="highlight" style="color:#f73131;">selenium</span> <span class="highlight" style="color:#f73131;">测试工具</span> 软件<span class="highlight" style="color:#f73131;">测试</span> <span class="highlight" style="color:#f73131;">自动化测试</span> 【<span class="highlight" style="color:#f73131;">Jmeter</span>进阶】<span class="highlight" style="color:#f73131;">压力测试</span>大杀器:<span class="highlight" style="color:#f73131;">Jmeter</span>使用技巧与总结!</strong></p> <p class="zk-a-i"> 一、基本概念 1.线<span class="highlight" style="color:#f73131;">程</span>组N:代表一定数量的并发用户,所谓并发就是指同一时刻访问发送请求的用户。线<span class="highlight" style="color:#f73131;">程</span>组就是模拟并发用户访问。 2.Ramp-Up Period(in seconds):建立所有线<span class="highlight" style="color:#f73131;">程</span>的周期... </p> </a> </div> <div class="zk-a-item"> <a href="https://www.kuazhi.com/post/385902.html"> <p class="zk-a-t" style="margin: 3px 0;"><strong><span class="highlight" style="color:#f73131;">测试工具</span> <span class="highlight" style="color:#f73131;">压力测试</span> <span class="highlight" style="color:#f73131;">程</span>序人生 <span class="highlight" style="color:#f73131;">自动化测试</span> <span class="highlight" style="color:#f73131;">Postman</span>高频面<span class="highlight" style="color:#f73131;">试</span>题及答案汇总(接口<span class="highlight" style="color:#f73131;">测试必备</span>)</strong></p> <p class="zk-a-i"> <span class="highlight" style="color:#f73131;">Postman</span>在软件<span class="highlight" style="color:#f73131;">测试</span>的面<span class="highlight" style="color:#f73131;">试</span>中,可以说是<span class="highlight" style="color:#f73131;">必</span>考题了,既然是高频考题,当然得为粉丝宝宝们整理一波题库喽~ 一、<span class="highlight" style="color:#f73131;">Postman</span>在<span class="highlight" style="color:#f73131;">工</span>作中使用流<span class="highlight" style="color:#f73131;">程</span>是什么样的? 二、你使用过<span class="highlight" style="color:#f73131;">Postman</span>的哪些功能? 三、Po... </p> </a> </div> <div class="zk-a-item"> <a href="https://www.kuazhi.com/post/465157.html"> <p class="zk-a-t" style="margin: 3px 0;"><strong><span class="highlight" style="color:#f73131;">测试工具</span> <span class="highlight" style="color:#f73131;">自动化测试</span> <span class="highlight" style="color:#f73131;">Jmeter</span>和<span class="highlight" style="color:#f73131;">Postman</span>那个<span class="highlight" style="color:#f73131;">工具</span>更适合做接口<span class="highlight" style="color:#f73131;">测试</span>?</strong></p> <p class="zk-a-i"> 软件<span class="highlight" style="color:#f73131;">测试</span>行业做功能<span class="highlight" style="color:#f73131;">测试</span>和接口<span class="highlight" style="color:#f73131;">测试</span>的人相对比较多。在<span class="highlight" style="color:#f73131;">测试工</span>作中,有高手,<span class="highlight" style="color:#f73131;">自</span>然也会有小白,但有一点我们无法否认,就是每一个高手都是从小白开始的,所以今天我们就来谈谈一大部分人在做的接口<span class="highlight" style="color:#f73131;">测试</span>,小白变高手也许... </p> </a> </div> <div class="zk-a-item"> <a href="https://www.kuazhi.com/post/386718.html"> <p class="zk-a-t" style="margin: 3px 0;"><strong><span class="highlight" style="color:#f73131;">测试工具</span> 软件<span class="highlight" style="color:#f73131;">测试</span> <span class="highlight" style="color:#f73131;">自动化测试</span> 软件<span class="highlight" style="color:#f73131;">测试工程</span>师 <span class="highlight" style="color:#f73131;">压力测试实战</span>,<span class="highlight" style="color:#f73131;">压力测试</span>步骤<span class="highlight" style="color:#f73131;">压力测试</span>数据 (史上最全最详细<span class="highlight" style="color:#f73131;">教程</span>)</strong></p> <p class="zk-a-i"> 目录:导读 前言一、为什么准<span class="highlight" style="color:#f73131;">备</span>数据二、<span class="highlight" style="color:#f73131;">测试</span>数据分类三、<span class="highlight" style="color:#f73131;">测试</span>数据准<span class="highlight" style="color:#f73131;">备</span>要求四、<span class="highlight" style="color:#f73131;">测试</span>数据准<span class="highlight" style="color:#f73131;">备</span>思路五、总结前言 <span class="highlight" style="color:#f73131;">压力测试</span>只有在服务器处于高<span class="highlight" style="color:#f73131;">压</span>状态时,才能真正反映各种设置暴露出来的问题。现在很多<span class="highlight" style="color:#f73131;">压力测试</span>都需要<span class="highlight" style="color:#f73131;">自</span>... </p> </a> </div> <div class="zk-a-item"> <a href="https://www.kuazhi.com/post/420970.html"> <p class="zk-a-t" style="margin: 3px 0;"><strong><span class="highlight" style="color:#f73131;">测试工具</span> 单元<span class="highlight" style="color:#f73131;">测试</span> <span class="highlight" style="color:#f73131;">selenium</span> <span class="highlight" style="color:#f73131;">jmeter</span> <span class="highlight" style="color:#f73131;">postman实</span>现接口<span class="highlight" style="color:#f73131;">测试</span>详细<span class="highlight" style="color:#f73131;">教程</span></strong></p> <p class="zk-a-i"> 各位小伙伴大家好, 今天为大家带来<span class="highlight" style="color:#f73131;">postman实战</span>接口<span class="highlight" style="color:#f73131;">测试</span>详细<span class="highlight" style="color:#f73131;">教程</span> 一.通过接口文档集合抓包分析接口 通过fiddler抓包获取到注册接口URL地址及相关参数数据,并通过接口文档分析接口参数内容及参... </p> </a> </div> <div class="zk-a-item"> <a href="https://www.kuazhi.com/post/441400.html"> <p class="zk-a-t" style="margin: 3px 0;"><strong><span class="highlight" style="color:#f73131;">测试工具</span> <span class="highlight" style="color:#f73131;">selenium</span> 数据库 <span class="highlight" style="color:#f73131;">Jmeter</span>和<span class="highlight" style="color:#f73131;">Postman</span>那个<span class="highlight" style="color:#f73131;">工具</span>更适合做接口<span class="highlight" style="color:#f73131;">测试</span>?</strong></p> <p class="zk-a-i"> 软件<span class="highlight" style="color:#f73131;">测试</span>行业做功能<span class="highlight" style="color:#f73131;">测试</span>和接口<span class="highlight" style="color:#f73131;">测试</span>的人相对比较多。在<span class="highlight" style="color:#f73131;">测试工</span>作中,有高手,<span class="highlight" style="color:#f73131;">自</span>然也会有小白,但有一点我们无法否认,就是每一个高手都是从小白开始的,所以今天我们就来谈谈一大部分人在做的接口<span class="highlight" style="color:#f73131;">测试</span>,小白变高手也许... </p> </a> </div> <div class="zk-a-item"> <a href="https://www.kuazhi.com/post/450028.html"> <p class="zk-a-t" style="margin: 3px 0;"><strong><span class="highlight" style="color:#f73131;">测试工具</span> <span class="highlight" style="color:#f73131;">自动化测试</span> 软件<span class="highlight" style="color:#f73131;">测试</span> <span class="highlight" style="color:#f73131;">Jmeter</span>和<span class="highlight" style="color:#f73131;">Postman</span>那个<span class="highlight" style="color:#f73131;">工具</span>更适合做接口<span class="highlight" style="color:#f73131;">测试</span>?</strong></p> <p class="zk-a-i"> 软件<span class="highlight" style="color:#f73131;">测试</span>行业做功能<span class="highlight" style="color:#f73131;">测试</span>和接口<span class="highlight" style="color:#f73131;">测试</span>的人相对比较多。在<span class="highlight" style="color:#f73131;">测试工</span>作中,有高手,<span class="highlight" style="color:#f73131;">自</span>然也会有小白,但有一点我们无法否认,就是每一个高手都是从小白开始的,所以今天我们就来谈谈一大部分人在做的接口<span class="highlight" style="color:#f73131;">测试</span>,小白变高手也许... </p> </a> </div> <div class="zk-a-item"> <a href="https://www.kuazhi.com/post/401776.html"> <p class="zk-a-t" style="margin: 3px 0;"><strong><span class="highlight" style="color:#f73131;">测试工具</span> 软件<span class="highlight" style="color:#f73131;">测试</span> <span class="highlight" style="color:#f73131;">自动化测试</span> <span class="highlight" style="color:#f73131;">程</span>序人生 <span class="highlight" style="color:#f73131;">Selenium实战教程</span>系列(三)--- <span class="highlight" style="color:#f73131;">Selenium</span>中的<span class="highlight" style="color:#f73131;">动</span>作</strong></p> <p class="zk-a-i"> <span class="highlight" style="color:#f73131;">Selenium</span>中针对元素进行的<span class="highlight" style="color:#f73131;">动</span>作在代码中可以分为两类: <span class="highlight" style="color:#f73131;">Selenium</span>::WebDriver::ActionBuilder类中的<span class="highlight" style="color:#f73131;">动</span>作方法<span class="highlight" style="color:#f73131;">Selenium</span>::WebDriver::Element类... </p> </a> </div> <div class="zk-a-item"> <a href="https://www.kuazhi.com/post/712868420.html"> <p class="zk-a-t" style="margin: 3px 0;"><strong><span class="highlight" style="color:#f73131;">测试工具</span> <span class="highlight" style="color:#f73131;">jmeter</span> <span class="highlight" style="color:#f73131;">自动化测试</span> 单元<span class="highlight" style="color:#f73131;">测试</span> 功能<span class="highlight" style="color:#f73131;">测试</span> <span class="highlight" style="color:#f73131;">selenium</span> API<span class="highlight" style="color:#f73131;">测试</span>之<span class="highlight" style="color:#f73131;">Postman</span>使用完全指南</strong></p> <p class="zk-a-i"> 前言 <span class="highlight" style="color:#f73131;">Postman</span>是一个可扩展的API开发和<span class="highlight" style="color:#f73131;">测试</span>协同平台<span class="highlight" style="color:#f73131;">工具</span>,可以快速集成到CI/CD管道中。旨在简<span class="highlight" style="color:#f73131;">化测试</span>和开发中的API<span class="highlight" style="color:#f73131;">工</span>作流。 <span class="highlight" style="color:#f73131;">Postman</span> <span class="highlight" style="color:#f73131;">工具</span>有 Chrome 扩展和独立客户端,推荐安装独... </p> </a> </div> <div class="zk-a-item"> <a href="https://www.kuazhi.com/post/433865.html"> <p class="zk-a-t" style="margin: 3px 0;"><strong><span class="highlight" style="color:#f73131;">压力测试</span> 功能<span class="highlight" style="color:#f73131;">测试</span> 简单好用的<span class="highlight" style="color:#f73131;">测试工具</span>(<span class="highlight" style="color:#f73131;">Postman</span>、<span class="highlight" style="color:#f73131;">JMeter</span>、<span class="highlight" style="color:#f73131;">Selenium</span>、CyPress、Fiddler等)</strong></p> <p class="zk-a-i"> 常用于HTTP接口<span class="highlight" style="color:#f73131;">测试</span>; 可以使用JS进行简单的编码; 但是,最近开始收费了;但是,又出了免费的PostWoman; 常用于<span class="highlight" style="color:#f73131;">压力测试</span>,可以<span class="highlight" style="color:#f73131;">测试</span>Http接口、DB等多种类型; 可以生成多种图表; 不需要... </p> </a> </div> <div class="zk-a-item"> <a href="https://www.kuazhi.com/post/712787220.html"> <p class="zk-a-t" style="margin: 3px 0;"><strong><span class="highlight" style="color:#f73131;">测试工具</span> <span class="highlight" style="color:#f73131;">jmeter</span> <span class="highlight" style="color:#f73131;">postman</span> 为什么用<span class="highlight" style="color:#f73131;">Selenium</span>做<span class="highlight" style="color:#f73131;">自动化测试</span></strong></p> <p class="zk-a-i"> 手<span class="highlight" style="color:#f73131;">工测试</span>的问题 手<span class="highlight" style="color:#f73131;">工</span>操作点点点借助的是人脑的反应和聪明,为什么不用手点了呢?手会酸,脑子会累,会占据太多的时间。想一想为什么会学习<span class="highlight" style="color:#f73131;">自动化测试</span>。我们都希望通过<span class="highlight" style="color:#f73131;">工具</span>来解放我们的双手,大脑,眼睛。 为什么用... </p> </a> </div> <div class="zk-a-item"> <a href="https://www.kuazhi.com/post/363537.html"> <p class="zk-a-t" style="margin: 3px 0;"><strong><span class="highlight" style="color:#f73131;">压力测试</span> 可用性<span class="highlight" style="color:#f73131;">测试</span> <span class="highlight" style="color:#f73131;">测试工具</span> c# 6. 堪比<span class="highlight" style="color:#f73131;">JMeter</span>的.Net<span class="highlight" style="color:#f73131;">压测工具</span> - Crank <span class="highlight" style="color:#f73131;">实战</span>篇 - 收集诊断跟踪信息与如何分析瓶颈</strong></p> <p class="zk-a-i"> 1. 前言上面我们已经做到了接口以及场景<span class="highlight" style="color:#f73131;">压测</span>,通过控制台输出结果,我们只需要将结果收集整理下来,最后汇总到excel上,此次<span class="highlight" style="color:#f73131;">压测</span>报告就可以完成了,但收集报告也挺麻烦的,交给谁呢…… 找了一圈、没找到愿... </p> </a> </div> <div class="zk-a-item"> <a href="https://www.kuazhi.com/post/713014821.html"> <p class="zk-a-t" style="margin: 3px 0;"><strong><span class="highlight" style="color:#f73131;">selenium</span> <span class="highlight" style="color:#f73131;">测试工具</span> <span class="highlight" style="color:#f73131;">压力测试</span> <span class="highlight" style="color:#f73131;">自动化测试</span> 超级利器!<span class="highlight" style="color:#f73131;">Postman自动化</span>接口<span class="highlight" style="color:#f73131;">测试</span>让你提升<span class="highlight" style="color:#f73131;">测试</span>效率,节省宝贵时间!</strong></p> <p class="zk-a-i"> <span class="highlight" style="color:#f73131;">Postman自动化</span>接口<span class="highlight" style="color:#f73131;">测试</span> 该篇文章针对已经掌握 <span class="highlight" style="color:#f73131;">Postman</span> 基本用法的读者,即对接口相关概念有一定了解、已经会使用 <span class="highlight" style="color:#f73131;">Postman</span> 进行模拟请求的操作。 当前环境: Window 7 - 6... </p> </a> </div> <div class="zk-a-item"> <a href="https://www.kuazhi.com/post/448520.html"> <p class="zk-a-t" style="margin: 3px 0;"><strong>职场和发展 <span class="highlight" style="color:#f73131;">自动化测试</span> 软件<span class="highlight" style="color:#f73131;">测试</span> 性能<span class="highlight" style="color:#f73131;">测试</span> <span class="highlight" style="color:#f73131;">测试工具</span> 详细全面的<span class="highlight" style="color:#f73131;">postman</span>接口<span class="highlight" style="color:#f73131;">测试实战教程</span></strong></p> <p class="zk-a-i"> 基本介绍 <span class="highlight" style="color:#f73131;">postman</span>是一款流<span class="highlight" style="color:#f73131;">程</span>的接口调<span class="highlight" style="color:#f73131;">试工具</span>,其特点就是使用简单,功能强大。使用角色也非常广泛,后端开发,前端人员,<span class="highlight" style="color:#f73131;">测试</span>人员都可以使用它进行接口调<span class="highlight" style="color:#f73131;">试</span>或<span class="highlight" style="color:#f73131;">测试</span>。 基本框架 如果把<span class="highlight" style="color:#f73131;">postman</span>去其内容... </p> </a> </div> </div></div><style> .zk_article_recommendation, .zk_article_recommendation * { margin: 0; padding: 0;box-sizing: border-box !important;list-style: none; } .zk_article_recommendation .recommendation-title { font-size: 18px; font-weight: 700; margin: 0; } .zk_article_recommendation .recommendation-list { margin: 0; font-size: 16px; } .zk_article_recommendation .recommendation-list .zk-a-item { padding: 2px 0 5px; border-bottom: 1px solid #e0e0e0; margin: 0; } .zk_article_recommendation .recommendation-list .zk-a-item a { margin: auto; } .zk_article_recommendation .zk-a-t { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; text-indent: 0; } .zk_article_recommendation .zk-a-i { color: #666; line-height: 20px; overflow: hidden; font-size: 14px; margin: 0; text-indent: 0; } </style> </div> <div class="share"> <button class="diggit" onclick="dashangToggle()" > <i class="jzicon-zanshang"></i><em>赞赏</em> </button> </div> <div class="copyright"><blockquote>本文由 用户 于 2024-06-09 发布在 夸智网,如有疑问,请联系我们。<br>本文链接:<a href="https://www.kuazhi.com/post/714029905.html">https://www.kuazhi.com/post/714029905.html</a></blockquote></div> <div class="single-share"> <div class="post-share"> <a title="分享"><i class="jzicon-jzfenxiang"></i></a> <div class="share-icons share-sns" data-title="测试工具 selenium jmeter 压力测试 自动化测试 测试必备工具 —— Postman实战教程!" data-url="https://www.kuazhi.com/post/714029905.html"> <span class="share-icon share-wechat cl" data-type="wechat" title="分享到微信"><i class="jzicon-weixin"></i><span id="wechat-qrcode"></span></span> <span class="share-icon share-sina-weibo cl" data-type="weibo" title="分享到微博"><i class="jzicon-weibo"></i></span><span class="share-icon share-qq cl" data-type="qq" title="分享到QQ好友"><i class="jzicon-qq"></i></span> </div> </div> <div class="post-like"> <a href="javascript:;" onclick="Jz52_tsqa_prise('714029905')" class="Jz52_tsqa_prise_id-714029905 dotGood Jz52_tsqa_prise badge" title="好文!一定要点赞!" data-badge="0"><i class="jzicon-jzzan-h"></i><em class="emz">0</em><em>赞</em></a> </div></div> </div> <div class="nextpro www_kuazhi_com"> <div class="prev"> <article class="post-overlay"> <div class="background-img" style="background-image:url(https://www.kuazhi.com/zb_users/theme/Jz52_tsqa/style/images/prevnoimg.jpg)"> </div> <div class="post_text"> <span><i class="jzicon-angle-left"></i>上一篇</span> <h3 class="post__title typescale-1 nav-prev">AI绘画年老的父母,老年绘画教程视频课堂</h3> </div> <a href="https://www.kuazhi.com/post/714029898.html" class="link-overlay"></a> </article> </div> <div class="next"> <article class="post-overlay"> <div class="background-img" style="background-image:url(https://www.kuazhi.com/zb_users/theme/Jz52_tsqa/style/images/nextnoimg.jpg)"> </div> <div class="post_text"> <span>下一篇<i class="jzicon-angle-right"></i></span> <h3 class="post__title typescale-1 nav-next">测试工具 软件测试 自动化测试 如何使用postman做接口测试</h3> </div> <a href="https://www.kuazhi.com/post/714029912.html" class="link-overlay"></a> </article> </div> </div> <div class="related-list www_kuazhi_com"> <h3><i class="jzicon-jztuwen"></i> 相关文章</h3> <ul> <li><a href="https://www.kuazhi.com/post/714942747.html" title="区块链会议 区块链投稿 最新区块链论文速读--CCF C会议 TrustCom 2023 共30篇 附pdf下载 (2/6)"><p>区块链会议 区块链投稿 最新区块链论文速读--CCF C会议 TrustCom 2023 共30篇 附pdf下载 (2/6)</p></a> </li> <li><a href="https://www.kuazhi.com/post/714942740.html" title="Web3不等于区块链,也和「币」没关系"><p>Web3不等于区块链,也和「币」没关系</p></a> </li> <li><a href="https://www.kuazhi.com/post/714689193.html" title="开发语言 C++中的区块链与加密货币开发"><p>开发语言 C++中的区块链与加密货币开发</p></a> </li> <li><a href="https://www.kuazhi.com/post/714936573.html" title="探索EVM区块链的无限可能 —— **EVM Blockchain Indexer** 开源项目解读"><p>探索EVM区块链的无限可能 —— **EVM Blockchain Indexer** 开源项目解读</p></a> </li> <li><a href="https://www.kuazhi.com/post/714936552.html" title="python 小试牛刀-Telebot区块链游戏机器人"><p>python 小试牛刀-Telebot区块链游戏机器人</p></a> </li> <li><a href="https://www.kuazhi.com/post/714942705.html" title="python打开json文件变为字典"><p>python打开json文件变为字典</p></a> </li> <li><a href="https://www.kuazhi.com/post/712785056.html" title="react.js web3 React dapp项目通过事件从区块链中拿到 已取消 已完成 和所有的订单数据 并存入redux中"><p>react.js web3 React dapp项目通过事件从区块链中拿到 已取消 已完成 和所有的订单数据 并存入redux中</p></a> </li> <li><a href="https://www.kuazhi.com/post/714942733.html" title="知名比特币质押协议项目Babylon联合创始人David将出席参加Hack.Summit()2024区块链开发者大会"><p>知名比特币质押协议项目Babylon联合创始人David将出席参加Hack.Summit()2024区块链开发者大会</p></a> </li> </ul> </div> <div class="comments www_kuazhi_com"> <div id="comments" class="comments-area clearfix"> <div class="comment-list"><!--评论框--><div class="jz-comment" id="divCommentPost"><h4 class="comments-title"> <span><i class="jzicon-jzqipaoc"></i>发表评论</span><a rel="nofollow" id="cancel-reply" href="#divCommentPost" style="display:none;float:right;"><small>取消回复</small></a></h4> <form id="frmSumbit" target="_self" method="post" action="https://www.kuazhi.com/zb_system/cmd.php?act=cmt&postid=714029905&key=dc104404b53441f2c04522995425ac01" ><input type="hidden" name="inpId" id="inpId" value="714029905"><input type="hidden" name="inpRevID" id="inpRevID" value="0"><div class="jz-comment-box jz-comment-ul4"> <input type="text" name="inpName" id="inpName" class="text" value="" size="28" tabindex="1" placeholder="名称(*)"> </div> <div class="jz-comment-box jz-comment-ul4"> <input type="text" name="inpEmail" id="inpEmail" class="text" value="" size="28" tabindex="2" placeholder="邮箱"> </div> <div class="jz-comment-box jz-comment-ul4"> <input type="text" name="inpHomePage" id="inpHomePage" class="text" value="" size="28" tabindex="3" placeholder="网站"> </div><div class="jz-comment-box jz-comment-ul4"> <input type="text" name="inpVerify" id="inpVerify" class="text" value="" size="28" tabindex="4" placeholder="验证码"><img class="jz-code" src="https://www.kuazhi.com/zb_system/script/c_validcode.php?id=cmt" alt="" title="" onclick="javascript:this.src='https://www.kuazhi.com/zb_system/script/c_validcode.php?id=cmt&tm='+Math.random();"> </div><div class="jz-comment-box jz-comment-textarea"> <textarea name="txaArticle" id="txaArticle" class="text" cols="50" rows="4" tabindex="5" placeholder="欢迎在这里交流评论,但是垃圾评论不受欢迎!"></textarea> </div><input name="sumbit" type="submit" tabindex="6" value="发表评论" onclick="return zbp.comment.post()" class="jz-commbut"> </form></div><label id="AjaxCommentBegin"></label><!--评论输出--><!--评论翻页条输出--><div class="pagelist page-comment"> </div><label id="AjaxCommentEnd"></label></div> </div></div> </div> </div> <aside id="sticky-wrapper"><div> <span class="ifread"><a href="javascript:;" onclick="Jz52_tsqa_prise('714029905')" class="Jz52_tsqa_prise_id-714029905 dotGood Jz52_tsqa_prise badge" title="好文!一定要点赞!" data-badge="0"><i class="jzicon-jzzan-h"></i><em class="emz">0</em><em>赞</em></a></span><span class="ifread"><a title="回复" href="#divCommentPost" class="badge" data-badge="0"><i class="jzicon-message-3-fill"></i></a></span><span class="ifread"><a title="热度" href="#" class="badge" data-badge="3"><i class="jzicon-fire-fill"></i></a></span><span class="ifread Cshare"><a title="分享" href="javascript:;" class=""><i class="jzicon-share-forward-fill"></i></a> <em class="share-sns" data-title="测试工具 selenium jmeter 压力测试 自动化测试 测试必备工具 —— Postman实战教程!" data-url="https://www.kuazhi.com/post/714029905.html"> <span class="cl" data-type="wechatl" title="分享到微信"><a title="分享到微信" href="#" class="bds_weixin" ><i class="jzicon-weixin"></i>微信<span id="wechat-qrcodel"></span></a></span><span class="cl" data-type="weibo" title="分享到微博"><a title="分享到新浪微博" href="#" class="bds_tsina" ><i class="jzicon-weibo"></i>新浪微博</a></span><span class="cl" data-type="qzone" title="分享到QQ空间"><a title="分享到QQ空间" href="#" class="bds_qzone" ><i class="jzicon-qzone"></i>QQ空间</a></span><span class="cl" data-type="qq" title="分享到QQ好友"><a title="分享到QQ好友" href="#" class="bds_qq" ><i class="jzicon-qq"></i>QQ</a></span> </em></span><span style="margin-top: 30px;"><a href="javascript:;" title="沉浸阅读" class="goread"><i class="jzicon-book-read-fill"></i></a></span><span class="ifread"><a title="智能问答" href="http://ai.kuazhi.com/ai_chat" class=""><i class=" jzicon-jzqipaoa "></i></a></span></div></aside> <aside id="sidebar-right"><div id="directory"></div><div class="widget ifread www_kuazhi_com" id="side-hot-view-item"><h3 class="function_t">柚子快报</h3><div><div style="display: grid; place-items: center;"><img src="https://www.kuazhi.com/zb_users/upload/2023/11/20231104115045169906984552756.png" alt="扫码下载柚子快报"></div><div style="margin-left:30px;"><p>1、扫码下载柚子快报</p><p>2、填写柚子快报邀请码778899</p></div></div></div><div class="widget ifread www_kuazhi_com" id="divSearchPanel"><h3 class="function_t">搜索</h3><div><form name="search" method="post" action="https://www.kuazhi.com/zb_system/cmd.php?act=search"><label><span style="position:absolute;color:transparent;z-index:-9999;">Search</span><input type="text" name="q" size="11" /></label> <input type="submit" value="搜索" /></form></div></div><div class="widget ifread www_kuazhi_com" id="side-new-article-item"><h3 class="function_t">最新文章</h3><ul><li class="widget-list-item"><div class="widget-post-list-item"><div class="list-body"> <a class="list-title" href="https://www.kuazhi.com/post/714942705.html" target="_blank" title="python打开json文件变为字典">python打开json文件变为字典</a> </div><div class="list-footer"> <span>2024-07-19</span> </div></div></li><li class="widget-list-item"><div class="widget-post-list-item"><div class="list-body"> <a class="list-title" href="https://www.kuazhi.com/post/714802593.html" target="_blank" title="柚子快报官方邀请码778899分享:探索区块链:颠覆性技术的崛起">柚子快报官方邀请码778899分享:探索区块链:颠覆性技术的崛起</a> </div><div class="list-footer"> <span>2024-07-19</span> </div></div></li><li class="widget-list-item"><div class="widget-post-list-item"><div class="list-body"> <a class="list-title" href="https://www.kuazhi.com/post/714563676.html" target="_blank" title="【主题广泛|投稿优惠】2024年区块链、网络与物联网国际会议(BNIT 2024)">【主题广泛|投稿优惠】2024年区块链、网络与物联网国际会议(BNIT 2024)</a> </div><div class="list-footer"> <span>2024-07-19</span> </div></div></li><li class="widget-list-item"><div class="widget-post-list-item"><div class="list-body"> <a class="list-title" href="https://www.kuazhi.com/post/714562157.html" target="_blank" title="数据库 这应该是最全的总结了!SQL中的开窗函数汇总!">数据库 这应该是最全的总结了!SQL中的开窗函数汇总!</a> </div><div class="list-footer"> <span>2024-07-19</span> </div></div></li><li class="widget-list-item"><div class="widget-post-list-item"><div class="list-body"> <a class="list-title" href="https://www.kuazhi.com/post/714238155.html" target="_blank" title="C++学习笔记总结练习: 字符串类MyString的实现">C++学习笔记总结练习: 字符串类MyString的实现</a> </div><div class="list-footer"> <span>2024-07-19</span> </div></div></li><li class="widget-list-item"><div class="widget-post-list-item"><div class="list-body"> <a class="list-title" href="https://www.kuazhi.com/post/388670.html" target="_blank" title="java http 安全 spring boot SpringSecurityOauth2(四种模式)">java http 安全 spring boot SpringSecurityOauth2(四种模式)</a> </div><div class="list-footer"> <span>2024-07-19</span> </div></div></li></ul></div><div class="widget ifread www_kuazhi_com" id="side-new-comment-item"><h3 class="function_t">最新评论</h3><ul><li><a href="https://www.kuazhi.com/post/317288.html#cmt558022340" title="探秘古老传说在windows 10 经验分享 C盘深度清理(超快简单全面)的评论"><img alt="探秘古老传说" src="https://www.kuazhi.com/zb_users/avatar/0.png" class="avatar" height="24" width="24"><p>在执行这些高级操作之前,建议先备份重要数据,以防万一,在进行磁盘清理和垃圾文件删除时,请确保关闭正在运行的程序,以免影响操作系统的正常运行,在安装新软件时,请留意其默认缓存位置,尽量将其设置在其他磁盘上,以节省C盘空间,定期检查硬盘健康状况,以确保数据安全。</p><span>2024-07-18</span></a></li><li><a href="https://www.kuazhi.com/post/317087.html#cmt558022333" title="猪猪侠的梦在计算机视觉 【matlab图像处理】直方图均衡化操作的评论"><img alt="猪猪侠的梦" src="https://www.kuazhi.com/zb_users/avatar/0.png" class="avatar" height="24" width="24"><p>在图像直方图均衡化过程中,为什么对于某些图片,均衡化后的效果反而变差了?</p><span>2024-07-18</span></a></li><li><a href="https://www.kuazhi.com/post/316862.html#cmt558022326" title="八卦小能手在docker安装Oracle数据库的评论"><img alt="八卦小能手" src="https://www.kuazhi.com/zb_users/avatar/0.png" class="avatar" height="24" width="24"><p>在Docker容器中,如何查看已经安装的Oracle 11g版本?内容:在Docker容器中,可以通过执行以下命令查看已经安装的Oracle 11g版本:```sqlplus / as sysdbaSELECT * FROM v$version;```</p><span>2024-07-18</span></a></li><li><a href="https://www.kuazhi.com/post/316777.html#cmt558022319" title="岁月如歌的行板在UE4/UE5 虚幻引擎,设置Mouse Cursor鼠标光标样式的评论"><img alt="岁月如歌的行板" src="https://www.kuazhi.com/zb_users/avatar/0.png" class="avatar" height="24" width="24"><p>UE虚幻引擎设置鼠标光标样式有两种方法:1. 使用Player Controller内部提供的鼠标样式:新建Player Controller,将其蓝图类设置到Player Controller Class,运行游戏后,鼠标光标变为Crosshairs十字准星。2. 在Project Settings项目设置的Software Cursor软件光标中自定义光标样式:在Widget中添加一个Image,设置其纹理图片,然后在Project Settings中设置刚才新建的Widget,运行游戏后,可以看到自定义的光标样式。</p><span>2024-07-18</span></a></li><li><a href="https://www.kuazhi.com/post/316518.html#cmt558022312" title="幸运星轨迹在全栈 服务器 javascript 前端 Node.js | 常用内置模块之 path 路径模块的评论"><img alt="幸运星轨迹" src="https://www.kuazhi.com/zb_users/avatar/0.png" class="avatar" height="24" width="24"><p>如何在Node.js中使用path模块获取文件的绝对路径?答案:在Node.js中,可以使用path模块的join方法来拼接路径,从而得到文件的绝对路径,示例代码如下:```javascriptconst path = require(path);const fs = require(fs);const filePath = path.join(__dirname, /static/index.txt);fs.readFile(filePath, utf-8, (err, data) => { if (err) { return console.log(读取文件出错!, err); } console.log(文件内容, data);});```</p><span>2024-07-18</span></a></li><li><a href="https://www.kuazhi.com/post/316387.html#cmt558022305" title="甜甜的棉花糖在AllowedLateness SideOutputLate WMStrategy Flink / Scala - TimeWindow 处理迟到数据详解的评论"><img alt="甜甜的棉花糖" src="https://www.kuazhi.com/zb_users/avatar/0.png" class="avatar" height="24" width="24"><p>在Flink中处理迟到数据的方法有哪些?</p><span>2024-07-18</span></a></li></ul></div></aside> </div> <div class="hide_box"></div> <div class="shang_box"> <a class="shang_close" href="javascript:void(0)" onclick="dashangToggle()" title="关闭"><img src="https://www.kuazhi.com/zb_users/theme/Jz52_tsqa/style/images/close.png" alt="取消"></a> <div class="shang_payimg"> <img src="https://www.kuazhi.com/zb_users/upload/2024/06/202406191718807752336204.jpg" alt="扫码支持" title="扫一扫"> <img src="https://www.kuazhi.com/zb_users/upload/2024/06/202406191718807752336204.jpg" style="display: none;" alt="支付码"> </div> <div class="shang_payselect"> <div class="pay_item checked" data-id="https://www.kuazhi.com/zb_users/upload/2024/06/202406191718807752336204.jpg"> <span class="radiobox"></span> <span class="pay_logo"><img src="https://www.kuazhi.com/zb_users/theme/Jz52_tsqa/style/images/wechat.svg" alt="微信支付"></span> </div> <div class="pay_item" data-id="https://www.kuazhi.com/zb_users/upload/2024/06/202406191718807752336204.jpg"> <span class="radiobox"></span> <span class="pay_logo"><img src="https://www.kuazhi.com/zb_users/theme/Jz52_tsqa/style/images/alipay.svg" alt="支付宝"></span> </div> </div> </div><script>$(function(){ $(".pay_item").click(function(){ $(this).addClass('checked').siblings('.pay_item').removeClass('checked'); var dataid=$(this).attr('data-id'); $(".shang_payimg img").attr("src",dataid); }); $(".hide_box").click(function(){ dashangToggle(); }); }); function dashangToggle(){ $(".hide_box").fadeToggle(); $(".shang_box").fadeToggle(); } </script> <script src="https://www.kuazhi.com/zb_users/theme/Jz52_tsqa/script/asid.js"></script> <div id="footer"> <p><p>夸智网——用心陪伴AI人工智能技术共同成长</p><p><a href="https://www.kuazhi.com/sitemap.html" target="_blank">网站地图</a> <a href="https://www.kuazhi.com/category-16.html" target="_blank">AI工具</a> <a href="https://www.kuazhi.com/category-17.html" target="_blank">AI教程</a> <a href="https://www.kuazhi.com/category-15.html" target="_blank">ChatGPT教程</a></p>金华奇玑电子商务有限公司 <a href="https://beian.miit.gov.cn/" target="_blank">浙ICP备15009899号-3</a><div style="display:none"><script charset="UTF-8" id="LA_COLLECT" src="//sdk.51.la/js-sdk-pro.min.js"></script><script>LA.init({id: "JsGU3vXOubP3rMz2",ck: "JsGU3vXOubP3rMz2"})</script></div><script charset="UTF-8" id="kuazhi_ai_click" src="https://kuazhi.com/kuazhi_ai_click.js"></script><div>本站部分信息来自互联网收集,仅供学习和交流,如有侵权、后门、不妥之处,请联系我们进行删除处理。</div></p> </div></div></div><a href="javascript:void(0);" class="to-top" id="to-top"><i class="jzicon-jzzhiding"></i><em>返回顶部</em></a><a class="jznight" href="javascript:switchNightMode()" target="_self"><i class="jzicon-yejian-b"></i><em>暗黑模式</em></a><script src="https://www.kuazhi.com/zb_users/theme/Jz52_tsqa/script/custom.js?v1.1.2"></script><script src="https://www.kuazhi.com/zb_users/theme/Jz52_tsqa/script/qrcode.min.js"></script><script src="https://www.kuazhi.com/zb_users/plugin/gbll_rollname/names.js"></script><script src="https://www.kuazhi.com/zb_users/plugin/gbll_rollname/roll.js"></script><script src="https://www.kuazhi.com/zb_users/theme/Jz52_tsqa/script/sticky-left.js"></script><script src="https://www.kuazhi.com/zb_users/theme/Jz52_tsqa/script/sidebar-right.js"></script><div id="ly_cache" data-id="714029905"></div></body></html><!--ly_cache 2024-07-19 01:12:23-->