└── README.md /README.md: -------------------------------------------------------------------------------- 1 | # Awesome Tester 2 | 3 |
12 | 13 |  14 | 15 | ------ 16 | 17 | 这是一个精心策划的软件测试资源清单,包括测试工具、测试框架、学习资源和测试网站。 18 | 19 | 灵感来源于 [awesome-python](https://github.com/vinta/awesome-python) 20 | 21 | - [测试工具](#测试工具) 22 | - [抓包工具](#抓包工具) 23 | - [接口工具](#接口工具) 24 | - [压力测试](#压力测试) 25 | - [Android测试工具](#Android测试工具) 26 | - [iOS测试工具](#iOS测试工具) 27 | - [Web测试工具](#Web测试工具) 28 | - [自动化工具](#自动化工具) 29 | - [IDE工具](#IDE工具) 30 | - [编译和反编译](#编译和反编译) 31 | - [终端](#终端) 32 | - [云测](#云测) 33 | - [数据库](#数据库) 34 | - [移动端性能](#移动端性能) 35 | - [监控/报表](#监控/报表) 36 | - [用例设计](#用例设计) 37 | - [测试环境](#测试环境) 38 | - [持续集成](#持续集成) 39 | - [项目管理](#项目管理) 40 | - [在线文档](#在线文档) 41 | - [版本控制](#版本控制) 42 | - [安全测试](#安全测试) 43 | - [代码扫描](#代码扫描) 44 | - [测试框架](#测试框架) 45 | - [整站项目](#整站项目) 46 | - [前端模版](#前端模版) 47 | - [后端项目](#后端项目) 48 | - [学习资源](#学习资源) 49 | - [视频资源](#视频资源) 50 | - [测试书籍](测试书籍) 51 | - [编程学习](#编程学习) 52 | - [面试相关](#面试相关) 53 | - [测试网站](#测试网站) 54 | - [测试社区](#测试社区) 55 | 56 | --- 57 | 58 | # 测试工具 59 | 60 | ## 抓包工具 61 | 62 | *业内常用的抓包工具* 63 | 64 | * [Charles](https://www.charlesproxy.com/) - 支持HTTP/HTTPS,支持Mock数据/弱网测试 65 | * [Fiddler](https://www.telerik.com/fiddler) - 支持HTTP/HTTPS,支持Mock数据/弱网测试 66 | * [Wireshark](https://www.wireshark.org/) - 网络封包分析软件,支持TCP、UDP等传输层协议抓包 67 | * [mitmproxy](https://www.mitmproxy.org/) - 基于Python的网络抓包工具,支持HTTP/HTTPS,支持二次开发 68 | * [anyproxy](https://github.com/alibaba/anyproxy) - 阿里巴巴开源,基于Node.js的网络抓包工具,支持HTTP/HTTPS,支持二次开发 69 | * [Stream(iOS)](https://apps.apple.com/cn/app/stream/id1312141691) - iOS最好用的抓包工具,不用PC做代理 70 | * [tcpdump](http://www.androidtcpdump.com/android-tcpdump/downloads) - 安卓抓包工具 71 | 72 | ## 接口工具 73 | 74 | *业内常用的接口调试工具* 75 | 76 | * [Postman](https://www.postman.com/) - 谷歌出品的优秀接口调试工具 77 | * [Postwoman](https://github.com/hoppscotch/hoppscotch) - Postman开源替代品 78 | * [Jmeter](https://jmeter.apache.org/) - Apache开源项目,适合压测/接口测试 79 | * [Swagger](https://swagger.io/) - 丝袜哥,适配多种编程语言,接口文档和调试工具 80 | * [Yapi](https://gitee.com/suxiaoxin123/yapi) - 接口管理平台,支持Mock数据,支持Postman/Swagger导入接口数据 81 | * [requests](http://python-requests.org/) - python的HTTP请求库 82 | * [grequests](https://github.com/spyoungtech/grequests) - requests + gevent for 异步 HTTP 请求库 83 | * [aiohttp](https://github.com/aio-libs/aiohttp) - 基于python的asyncio的HTTP请求库 84 | 85 | ## 压测工具 86 | 87 | *业内常用的压测工具* 88 | 89 | * [Jmeter](https://jmeter.apache.org/) - Apache开源项目,适合压测/接口测试 90 | * [Loadrunner](https://www.microfocus.com/en-us/products/performance-engineering/overview) - 老牌压测工具 91 | * [Locust](https://www.locust.io/) - 开源的压测工具 92 | * [go-stress-testing](https://github.com/link1st/go-stress-testing) - 基于Go语言开发的开源压测工具 93 | * [ab](http://httpd.apache.org/) - ab是apache自带的压力测试工具 94 | * [pts](https://www.aliyun.com/product/pts) - 阿里云的商业压测软件 95 | * [wrk](https://github.com/wg/wrk) - C语言开源压测工具 96 | 97 | ## Android测试工具 98 | 99 | *移动端测试工程师常用的 Android 测试工具* 100 | 101 | - [adb](https://developer.android.com/studio/command-line/adb.html) - Android 调试桥,Android SDK自带的调试工具 102 | - [Android Studio](https://developer.android.google.cn/studio/) - Android IDE工具,自带调试功能 103 | - [aapt]() - Android 资源包管理工具,Android SDK自带的工具 104 | - [Chrome Inspect](chrome://inspect/#devices) - Chrome浏览器调试 Android webview 的工具 105 | - [uiautomatorviewer](https://android-sdk.en.softonic.com/mac) - Android 控件树定位工具,Android SDK自带 106 | 107 | ## iOS测试工具 108 | 109 | *移动端测试工程师常用的 iOS 测试工具* 110 | 111 | * [libimobiledevice](https://github.com/libimobiledevice/libimobiledevice) - 与iOS设备进行通信的跨平台协议库 112 | * [pymobiledevice](https://github.com/iOSForensics/pymobiledevice) - libimobiledevice的Python实现 113 | * [imobiledevice](http://docs.quamotion.mobi/docs/imobiledevice/download/) - Quamotion提供的libimobiledevice的Windows平台可执行版本 114 | * [XCode](https://developer.apple.com/xcode/) - iOS IDE工具,自带调试功能 115 | * [XCTest](https://developer.apple.com/documentation/xctest) - iOS 单元测试工具 116 | * [testflight](https://testflight.apple.com/) - iOS 灰度测试工具 117 | 118 | ## Web测试工具 119 | 120 | *Web测试工程师常用的测试工具* 121 | 122 | - [chrome](https://www.google.cn/chrome/) - 谷歌浏览器,F12 调试 123 | - [firefox](http://www.firefox.com.cn/) - 火狐浏览器 124 | - [IE](https://support.microsoft.com/zh-cn/help/17621/internet-explorer-downloads) - 远古时代的浏览器 125 | - [Edge](https://www.microsoft.com/zh-cn/edge) - 微软出品的浏览器,IE的替代品 126 | - [IETester](http://www.my-debugbar.com/wiki/IETester/HomePage) - 浏览器兼容性测试工具 127 | - [Browsershots](http://browsershots.org/) - 在线的浏览器兼容性测试工具 128 | - [在线工具](https://tool.lu/) - 实用在线小工具(json解析/时间戳/IP地址查询) 129 | 130 | ## 自动化工具 131 | 132 | *常用的自动化测试底层框架(工具)* 133 | 134 | - [Appium](http://appium.io/) - 最主流的 APP UI 自动化测试框架,可支持 Android/iOS 135 | - [Selenium](http://www.selenium.org.cn/) - 最主流的 WEB UI 自动化测试框架 136 | - [按键精灵](http://www.anjian.com/download.htm) - Windows 自动化工具 137 | - [PyAutoGUI](https://muxuezi.github.io/posts/doc-pyautogui.html) - Python库,可以模拟鼠标键盘操作 138 | - [uiautomator2](https://github.com/openatx/uiautomator2) - 基于 Python 的 UI 自动化测试框架,可支持 Android/iOS 139 | - [wda](https://github.com/facebookarchive/WebDriverAgent) - facebook 开源的 iOS 自动化测试工具 140 | - [ATX](https://github.com/NetEaseGame/ATX) - 基于图像识别完成游戏的自动化操作 141 | - [Appetizer](https://www.appetizer.io/) - 移动开发智能化平台,集成多种移动端测试套件 142 | - [Airtest](http://airtest.netease.com/) - 网易开源的游戏自动化测试工具 143 | - [unittest](https://docs.python.org/3/library/unittest.html) - 基于 Python 的单元测试工具,常用于管理自动化测试用例 144 | - [Pytest](https://learning-pytest.readthedocs.io/zh/latest/) - 基于 Python 的单元测试工具,常用于管理自动化测试用例 145 | - [Junit](https://junit.org/junit5/) - 基于 Java 的单元测试工具,常用于管理自动化测试用例 146 | - [TestNG](https://testng.org/doc/) - 基于 Java 的单元测试工具,常用于管理自动化测试用例 147 | - [Allure](https://docs.qameta.io/allure/#_about) - 自动化报告生成框架(搭配 Pytest 使用) 148 | - [HTMLTestRunnerCN](https://github.com/findyou/HTMLTestRunnerCN) - 自动化报告生成框架(搭配 unittest 使用) 149 | 150 | ## IDE工具 151 | 152 | *常用的代码编写和调试工具* 153 | 154 | - [IntelliJ IDEA](https://www.jetbrains.com/idea/) - Java 开发工具 155 | - [PyCharm](https://www.jetbrains.com/pycharm/) - Python 开发工具 156 | - [Jupyter Notebook](https://jupyter.org/install) - Python 算法/数据分析/可视化演示 157 | - [PhpStorm](https://www.jetbrains.com/phpstorm/) - PHP(拍黄片) 开发工具 158 | - [WebStorm](https://www.jetbrains.com/webstorm/) - 前端 开发工具 159 | - [Goland](https://www.jetbrains.com/go/) - Go(够烂的) 开发工具 160 | - [Android Studio](https://developer.android.google.cn/studio/) - Android 开发工具 161 | - [XCode](https://developer.apple.com/xcode/) - iOS 开发工具 162 | - [VSCode](https://code.visualstudio.com/) - 轻量级 开发工具 163 | - [Visual Studio](https://visualstudio.microsoft.com/zh-hans/products/) - C/C++ 开发工具 164 | - [Hbuider](https://www.dcloud.io/) - 轻量级 前端 开发工具 165 | - [微信开发者工具](https://developers.weixin.qq.com/miniprogram/dev/devtools/download.html) - 微信小程序 开发工具 166 | - [小程序开发者工具](https://render.alipay.com/p/f/fd-jwq8nu2a/pages/home/index.html) - 支付宝小程序 开发工具 167 | - [sublime](http://www.sublimetext.com/) - 轻量级 开发工具 168 | 169 | ## 编译和反编译 170 | 171 | *常用的代码编译和反编译工具* 172 | 173 | - [Maven](https://maven.apache.org/) - Java 工程依赖管理和构建工具 174 | - [Ant](http://ant.apache.org/) - Java 工程构建工具 175 | - [Gradle](https://gradle.org/) - Java 工程依赖管理和构建工具 176 | - [webpack](https://www.webpackjs.com/) - 前端资源加载/打包工具 177 | - [npm](https://www.npmjs.com/) - Node.js包管理工具 178 | - [gulp](https://www.gulpjs.com.cn/) - 前端 基于流的自动化构建工具 179 | - [jd-gui](https://github.com/java-decompiler) - Java 反编译工具 180 | - [ApkTool](http://ibotpeaches.github.io/Apktool/) - APK反编译工具 181 | - [NET.Reflector](https://www.red-gate.com/products/dotnet-development/reflector/) - Unity安卓DLL代码文件反编译工具 182 | - [AssetStudio](https://github.com/Perfare/AssetStudio) - Unity AssetBundle破解 183 | - [dotPeek](http://www.jetbrains.com/decompiler/) - .NET 反编译工具 184 | 185 | ## 终端 186 | 187 | *常用的终端连接工具* 188 | 189 | - [Xshell](https://www.netsarang.com/zh/xshell/) - Windows 下好用的终端连接工具 190 | - [SecureCRT](https://www.vandyke.com/download/securecrt/6.7/index.html) - Windows 下好用的终端连接工具 191 | - [MobaXterm](https://moba.en.softonic.com/) - Windows 下好用的终端连接工具 192 | - [iTerm2](https://www.iterm2.com/) - MacOS 下最好用的终端连接工具 193 | 194 | ## 云测平台 195 | 196 | *知名的云测平台(以及设备管理平台)* 197 | 198 | - [STF](https://openstf.io/) - Web端知名的移动设备管理控制工具 199 | - [Testin](https://www.testin.cn/) - 知名的商业测试平台 200 | - [WeTest](https://wetest.qq.com/) - 腾讯质量开放平台 201 | - [ATX-SERVER](https://github.com/openatx/atx-server) - Go语言编写的安卓设备集群管理 202 | - [atxserver2](https://github.com/openatx/atxserver2) - ATX-SERVER 的 Python 版本 203 | 204 | ## 数据库 205 | 206 | *常用的数据库连接工具* 207 | 208 | - 关系型数据库 209 | - [Navicat](http://www.navicat.com.cn/) - 数据库可视化工具 210 | - [phpMyAdmin](https://www.phpmyadmin.net/) - MySQL管理平台 211 | - [Hue](https://gethue.com/) - 大数据交互平台 212 | - 非关系型数据库 213 | - [Robo 3T](https://robomongo.org/download) - MongoDB可视化工具 214 | - [RDM](https://redisdesktop.com/) - Redis可视化工具 215 | 216 | ## 移动端性能 217 | 218 | *移动端性能测试工具* 219 | 220 | - [Monkey](https://developer.android.com/studio/test/monkey.html) - Android adb自带的稳定性测试工具 221 | - [WeTest助手](https://wetest.qq.com/cloud/help/effective) - WeTest平台出品的APP性能数据采集工具 222 | - [GT](https://github.com/Tencent/GT) - 腾讯开源的APP的性能监控工具 223 | - [Emmagee](https://github.com/NetEase/Emmagee) - 网易开源的APP性能监控工具 224 | - [PerfDog](https://perfdog.qq.com/) - 腾讯WeTest出品的性能数据采集/分析工具,支持 Android/iOS 225 | - [Xcode Instruments](https://help.apple.com/instruments/mac/10.0/) - Xcode自带的性能调试工具集 226 | - [SoloPi](https://github.com/alipay/SoloPi) - 支付宝开源的Android自动化工具,支持用作性能测试 227 | - [AppCrawler](https://github.com/seveniruby/AppCrawler) - 一个 Scala 编写的 APP 自动遍历工具,支持 Android/iOS 228 | - [UiCrawler](https://github.com/lgxqf/UICrawler) - 基于Appium的 App UI 遍历 & Monkey工具 (支持操作步骤回放) 229 | - [Maxim](https://github.com/zhangzhao4444/Maxim) - 基于遍历规则的高性能Android Monkey 230 | 231 | ## 监控/报表 232 | 233 | *监控和报表工具* 234 | 235 | - [Grafana](https://grafana.com/) - Go编写的开源可视化指标监控平台 236 | - [Sentry](https://sentry.io/welcome/) - 开源的日志记录和监控平台 237 | - [Echart](https://echarts.apache.org/zh/index.html) - Apache开源的前端图表可视化工具 238 | - [Allure](https://docs.qameta.io/allure/#_about) - 自动化报告生成框架(搭配 Pytest 使用) 239 | - [HTMLTestRunnerCN](https://github.com/findyou/HTMLTestRunnerCN) - 自动化报告生成框架(搭配 unittest 使用) 240 | - [Fabric](https://get.fabric.io/) - APP开发平台,可以监控Crash及APP版本数据 241 | - [Tableau](https://www.tableau.com/) - 数据分析和可视化工具 242 | 243 | ## 用例设计 244 | 245 | *用例设计常用工具* 246 | 247 | - [Xmind](https://www.xmind.net/) - 思维脑图形式的用例编写工具 248 | - [Excel](https://www.microsoft.com/zh-cn/microsoft-365/excel) - 表格形式的用例编写工具 249 | - [behave](https://pypi.org/project/behave/) - python 的 BDD 库,用例组织 250 | - [禅道](https://www.zentao.net/) - 项目管理平台,也支持用例管理 251 | - [kityminder](https://github.com/fex-team/kityminder) - 百度脑图开源版本,支持二开和本地化部署 252 | 253 | ## 测试环境 254 | 255 | *测试环境维护常用工具* 256 | 257 | - [Ansible](https://www.ansible.com/) - 流行的自动化运维工具 258 | - [fabric](http://www.fabfile.org/) - 非编译型语言部署工具 259 | - [Docker](https://www.docker.com/) - 开源的应用容器引擎 260 | - [k8s](https://www.kubernetes.org.cn/k8s) - 容器化应用管理云平台解决方案 261 | - [uWSGI](https://uwsgi-docs.readthedocs.io/en/latest/) - 一个Python Web服务器 262 | - [Nginx](http://nginx.org/en/) - 高性能的HTTP和反向代理web服务器 263 | - [walle](http://www.walle-web.io/) - 高颜值项目部署系统 264 | 265 | ## 持续集成 266 | 267 | *常用的持续集成工具* 268 | 269 | - [Jenkins](https://www.jenkins.io/) - 最主流的持续集成工具 270 | 271 | ## 项目管理 272 | 273 | *业内常用的项目管理软件* 274 | 275 | - [Jira](https://www.atlassian.com/software/jira) - Atlassian公司出品的项目与事务跟踪工具,也是目前最流行的项目管理工具 276 | - [禅道](https://www.zentao.net/) - 项目管理平台 277 | - [普兰能效平台](https://github.com/purang-fintech) - 开源的效能平台,支持本地化部署和二次开发 278 | - [tower](https://tower.im/) - 团队和项目管理平台 279 | 280 | ## 在线文档 281 | 282 | *工作中常用的协作工具* 283 | 284 | - [石墨文档](https://shimo.im/desktop) - 一款轻便、简洁的在线协作文档工具 285 | - [wiki](https://www.atlassian.com/software/confluence/why-wiki-collaboration-software) - 企业级的wiki系统 286 | - [有道云笔记](http://note.youdao.com/) - 在线笔记 287 | - [印象笔记](https://www.yinxiang.com/) - 在线笔记 288 | - [Processon](https://www.processon.com/) - 在线作图工具 289 | 290 | ## 版本控制 291 | 292 | *业内主流的代码版本管理工具* 293 | 294 | - [Git](https://git-scm.com/) - 开源的分布式版本控制系统 295 | - [Gitlab](https://about.gitlab.com/) - 支持本地化部署的Git项目托管平台 296 | - [Github](https://github.com/) - 面向开源及私有软件项目的托管平台 297 | - [Gitee](https://gitee.com/) - 码云,面向中国国内的软件项目的托管平台 298 | - [SVN](https://tortoisesvn.net/) - 一个开放源代码的中心化的版本控制系统 299 | 300 | ## 安全测试 301 | 302 | *业界知名的安全测试工具精选* 303 | 304 | - [AppScan](https://www.ibm.com/developerworks/cn/downloads/r/appscan/learn.html) - IBM 网络安全测试工具 305 | - [Nmap](https://nmap.org/) - 网络扫描和嗅探工具包 306 | - [sqlmap](http://sqlmap.org/) - sql 注入漏洞检查工具 307 | - [nessus](https://zh-cn.tenable.com/products/nessus?tns_redirect=true) - 目前全世界最多人使用的系统漏洞扫描与分析软件 308 | - [Drozer]() - Android 渗透测试工具 309 | - [MobSF](https://github.com/MobSF/Mobile-Security-Framework-MobSF) - 移动端应用安全问题检测框架和工具(支持Android/iOS) 310 | - [QARK](https://github.com/linkedin/qark) - Linkin 开源的一款静态代码分析工具 311 | 312 | ## 代码扫描 313 | 314 | *业界知名的代码扫描工具* 315 | 316 | - [SonarQube](https://www.sonarqube.org/) - 代码质量管理平台 317 | - [QARK](https://github.com/linkedin/qark) - Linkin 开源的一款静态代码分析工具 318 | - [ESLint](https://eslint.bootcss.com/) - JavaScript 语法规则和代码风格的检查工具 319 | - [Jlint](http://jlint.sourceforge.net/) - Java 语法规则和代码风格的检查工具 320 | - [p3c](https://github.com/alibaba/p3c) - 阿里巴巴 Java 代码风格检查工具 321 | - [pylint](https://www.pylint.org/) - Python 语法规则和代码风格检查工具 322 | 323 | # 测试框架 324 | 325 | ## 整站项目 326 | 327 | *测试平台整站项目* 328 | 329 | - [metersphere](https://github.com/metersphere/metersphere) - 一站式的开源企业级持续测试平台 330 | - [普兰能效平台](https://github.com/purang-fintech) - 开源的效能平台,支持本地化部署和二次开发 331 | - [sosotest](https://github.com/LianjiaTech/sosotest) - 贝壳找房测试团队开源的整站接口自动化测试平台,支持 HTTP 和 DUBBO 332 | - [LuckyFrameWeb](https://gitee.com/seagull1985/LuckyFrameWeb) - 开源自动化测试平台 333 | - [HttpRunner](https://github.com/HttpRunner/HttpRunner) - HttpRunner 是一款面向 HTTP(S) 协议的通用测试框架 334 | - [ATX-Test](https://github.com/pengchenglin/ATX-Test) - 基于ATX-Server的UI自动化测试框架,目前也支持运行Monkey 335 | - [APT](https://github.com/ooqitech/ATP) - Flask + vue.js 的测试服务平台 336 | 337 | ## 前端模版 338 | 339 | - [Vue-element-admin](https://github.com/PanJiaChen/vue-element-admin) - 基于 vue.js 和 ElementUI 的后台管理系统前端脚手架项目 340 | - [inspinia](https://github.com/Chuibility/inspinia) - 基于 Bootstrap 的后台管理系统前端框架模版 341 | - [xenon](https://github.com/GroupOfStar/xenon) - 基于 Bootstrap 的后台管理系统前端框架模版 342 | - [lin-cms-vue](https://github.com/TaleLin/lin-cms-vue) - 林间有风团队开源,cms后台工程,前端部分 343 | 344 | ## 后端项目 345 | 346 | - [lin-cms-springboot](https://github.com/TaleLin/lin-cms-spring-boot) - 林间有风团队开源,cms后台工程,后端 Java 347 | - [lin-cms-flask](https://github.com/TaleLin/lin-cms-flask) - 林间有风团队开源,cms后台工程,后端 Python 348 | - [lin-cms-koa](https://github.com/TaleLin/lin-cms-koa) - 林间有风团队开源,cms后台工程,后端 Node.js 349 | 350 | # 学习资源 351 | 352 | ## 视频资源 353 | 354 | - [程序员臻叔](https://space.bilibili.com/382166537) - B站上测试开发领域的小UP主 355 | - [Python移动自动化测试面试](https://coding.imooc.com/class/182.html) - 慕课网无线测试面试 356 | 357 | ## 学习路线 358 | 359 | - [测开学习路线](https://mp.weixin.qq.com/s/H6ULJUe30REadme9-7wKGQ) - 从0开始,入职大厂测试开发学习路线 360 | - [测试开发技术图谱](https://camo.githubusercontent.com/d1064bfadc97d2a7f3491aa4c6e545a9aba8ea66/687474703a2f2f7777312e73696e61696d672e636e2f6c617267652f36396235373764346779316735726471636372366c6a32307a6b316561616c302e6a7067) - 霍格沃滋测试学院出品 361 | 362 | ## 测试书籍 363 | 364 | - [测试开发必读书单](https://mp.weixin.qq.com/s/LKG0PBGkUR1qlsBZ769EJw) - 软件测试必读的48本书 365 | 366 | ## 编程学习 367 | 368 | - [菜鸟教程](https://www.runoob.com/) - 基本上涵盖了大多数的主流编程语言的教程 369 | - [廖雪峰Python](https://www.liaoxuefeng.com/wiki/1016959663602400) - python基础知识教程,学完应该能入门了 370 | - [Python3高级核心技术97讲](https://coding.imooc.com/class/200.html) - 慕课网 Python 进阶最优视频 371 | - [廖雪峰Git](https://www.liaoxuefeng.com/wiki/896043488029600) - 优质 Git 教程 372 | - [How2J](https://how2j.cn/) - 优质 Java 教程 373 | - [Mall](https://github.com/macrozheng/mall) - 优质Java项目,SpringBoot + Mybatis 374 | - [JavaGuide](https://github.com/Snailclimb/JavaGuide) - 「Java学习+面试指南」一份涵盖大部分Java程序员所需要掌握的核心知识。 375 | - [JavaGuide 面试突击版](https://github.com/Snailclimb/JavaGuide-Interview) - Java 面试突击版 376 | 377 | ## 面试相关 378 | 379 | - [牛客网](https://www.nowcoder.com/) - 刷题、面经 380 | - [leetcode](leetcode) - 算法学习、算法面试题 381 | - [测试开发面试专辑](https://mp.weixin.qq.com/mp/appmsgalbum?action=getalbum&__biz=MzAxMTA2OTY0Nw==&scene=1&album_id=1485856836774838273#wechat_redirect) - 程序员臻叔面试专辑汇总 382 | - [测试开发面试复习资料](https://github.com/GitDzreal93/dev-tester) - 测试开发面试资源、复习资料汇总 383 | - [500丁简历](https://www.500d.me/) - 简历模版 384 | - [ResumeSample](https://github.com/geekcompany/ResumeSample) - 程序员简历模版 385 | - [冷熊简历](http://cv.ftqq.com/?fr=github) - 冷熊简历md格式 386 | 387 | # 测试网站 388 | 389 | ## 测试社区 390 | 391 | - [TesterHome](https://testerhome.com/) - 中国最好的测试社区 --------------------------------------------------------------------------------