首页
学习
活动
专区
圈层
工具
发布
清单首页ai文章详情

这 6 个测试 Skills,让 AI 成为你的 QA 搭档

{"type":"doc","content":[{"type":"image","attrs":{"id":"ab3bca1a-79bb-470d-b5fb-6504c7f414b0","src":"https://developer.qcloudimg.com/http-save/audit-11725165/3f7d6ce6da1aa0b671e8e3c06e294365.png","extension":"","align":"center","alt":"","showAlt":false,"href":"","boxShadow":"","width":"","aspectRatio":0,"status":"success","showText":true,"isPercentage":false,"percentage":0,"isHoverDragHandle":false}},{"type":"paragraph","attrs":{"id":"6d7504f8-74d6-4066-b9d2-2f3ca5628830","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"不知道大家有没有感觉到,最近 AI Agent Skills 在测试圈真的火起来了。"}]},{"type":"paragraph","attrs":{"id":"21d909e9-00a3-48b9-aee2-fa255b511c95","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"以前写自动化测试,要自己配环境、写脚本、调接口,各种繁琐操作。现在有了 Claude Code 配合专业的 Testing Skills,很多重复性的测试工作都能交给 AI 来完成。"}]},{"type":"paragraph","attrs":{"id":"4fc0bbde-cf26-422b-adfa-af872e0e0a74","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"特别是对于那些测试任务重、人手不够的团队来说,用好这些 Skills,测试效率能提升好几倍。下面就给大家分享 6 个我最近发现的超实用测试 Skills。"}]},{"type":"heading","attrs":{"id":"ef814823-cc18-42e5-b82c-6be9141dde15","textAlign":"inherit","indent":0,"level":3,"isHoverDragHandle":false},"content":[{"type":"text","marks":[{"type":"bold"}],"text":"01 Web 应用测试:Webapp Testing Skill"}]},{"type":"paragraph","attrs":{"id":"cfe9eeba-bf78-4f2f-83a6-b407d95ac06e","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"这个是 Anthropic 官方推出的 Web 应用测试 Skill,在官方 Skills 仓库里就能找到。"}]},{"type":"paragraph","attrs":{"id":"924a2d60-c90c-4ce9-9fdf-7535a68fd191","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"传统的 Web 测试需要自己写 Playwright 或 Selenium 脚本,配置浏览器环境,处理各种异步等待问题。有了这个 Skill,你只需要告诉 Claude “测试登录功能”或者“验证表单提交流程”,它就能自动完成测试。"}]},{"type":"paragraph","attrs":{"id":"c3d6ef97-a70a-4ded-b1db-7fd81a0ff409","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"比如你想测试一个本地开发的电商网站。这个 Skill 会自动启动 Playwright,访问你的本地服务,模拟用户操作,然后生成测试报告。它还能自动截图,记录每一步的操作结果。"}]},{"type":"image","attrs":{"id":"12300381-45ee-43f7-ac53-8babb73f6b66","src":"https://developer.qcloudimg.com/http-save/audit-11725165/3a994b299b61048f208fe2a6377b008a.png","extension":"","align":"center","alt":"","showAlt":false,"href":"","boxShadow":"","width":"","aspectRatio":0,"status":"success","showText":true,"isPercentage":false,"percentage":0,"isHoverDragHandle":false}},{"type":"paragraph","attrs":{"id":"fc41524c-5d83-4ec2-8f8b-e3fbefeb7343","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"原理其实是 Anthropic 把 Playwright 的最佳实践和常见测试场景都封装进了 Skill。它不是简单地执行命令,而是能理解测试意图,自动选择合适的选择器策略,处理动态加载的内容。"}]},{"type":"paragraph","attrs":{"id":"81b03c88-8a2f-48ea-a462-2fdf7b7fccf2","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"说白了,这个 Skill 把专业测试工程师的 UI 测试经验变成了 AI 可以理解和执行的知识。对于前端开发者来说,不用再花时间学习复杂的测试框架,就能快速验证功能是否正常。"}]},{"type":"heading","attrs":{"id":"6c40f922-9cf4-49b9-aa87-d53e2da67f37","textAlign":"inherit","indent":0,"level":3,"isHoverDragHandle":false},"content":[{"type":"text","marks":[{"type":"bold"}],"text":"02 浏览器自动化:Playwright Skill"}]},{"type":"paragraph","attrs":{"id":"4f862736-90ef-4251-bffe-cf1a2658989e","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"这个是由 lackeyjb 开发的 Playwright 自动化 Skill,在社区里口碑挺不错的。"}]},{"type":"paragraph","attrs":{"id":"8f8562fd-b8ff-432e-8584-591a65b4250b","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"UI 自动化测试最麻烦的是什么?要写大量的选择器代码、处理各种等待时机、截图、验证。这个 Skill 能让 Claude 自动编写和执行任何 Playwright 自动化任务。"}]},{"type":"paragraph","attrs":{"id":"2d3ad7dd-94fe-475f-af2a-a858c57b2974","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"比如你想测试一个复杂的多步骤流程,像用户注册、填写表单、上传文件、提交验证。用传统方式你得写几十行代码。用这个 Skill,你只要说“测试完整的用户注册流程”,它就能自动生成代码并执行。"}]},{"type":"image","attrs":{"id":"de74785c-dc5f-476e-ab3e-f3ba4b8b060c","src":"https://developer.qcloudimg.com/http-save/audit-11725165/88333132ce935516f7fa4a98596cb4ba.png","extension":"","align":"center","alt":"","showAlt":false,"href":"","boxShadow":"","width":"","aspectRatio":0,"status":"success","showText":true,"isPercentage":false,"percentage":0,"isHoverDragHandle":false}},{"type":"paragraph","attrs":{"id":"1794d442-fc68-4f1d-a1fe-b7d526030fef","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"这个 Skill 的特色是默认使用可见浏览器模式(headless: false),你能实时看到测试过程。而且它解决了模块解析的问题,确保所有 Playwright API 都能正常访问。"}]},{"type":"paragraph","attrs":{"id":"836eb512-27fd-4edd-81b4-da7538dca096","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"它采用了渐进式披露的设计,SKILL.md 文件很简洁,只有在需要时才加载完整的 API 参考文档。这样既能快速响应,又不会占用太多 token。"}]},{"type":"paragraph","attrs":{"id":"25f8d4c1-87b5-4a81-8dc5-36ef8469342c","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"说白了,这个 Skill 让 Claude 成为一个会写 Playwright 代码的测试工程师。执行完成后还会返回结果、截图和控制台输出,方便你分析问题。"}]},{"type":"heading","attrs":{"id":"e607b1b5-a3b1-47a9-845d-edbd2f5de5d2","textAlign":"inherit","indent":0,"level":3,"isHoverDragHandle":false},"content":[{"type":"text","marks":[{"type":"bold"}],"text":"03 组合测试用例生成:PyPICT Skill"}]},{"type":"paragraph","attrs":{"id":"ef8ecb98-c239-4db9-a922-277851d9d764","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"这个挺有意思的,是专门用来生成组合测试用例的 Skill,由 omkamal 开发。"}]},{"type":"paragraph","attrs":{"id":"18acf9f7-7bc3-4766-bef5-1ba68b25ac6d","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"做过测试的都知道,当系统有多个输入参数时,要覆盖所有可能的组合是个大工程。比如一个表单有 5 个字段,每个字段有 3 种可能的值,全排列组合就是 243 种情况,根本测不过来。"}]},{"type":"paragraph","attrs":{"id":"ef2e94d2-2f05-4ecc-a05d-53e3ed9b0f39","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"这个 Skill 使用 PICT(成对独立组合测试)算法,能用最少的测试用例覆盖最多的参数组合。它基于微软开发的 PICT 工具和 Python 绑定库 pypict。"}]},{"type":"image","attrs":{"id":"016b7dec-47da-4c66-aa52-7c1b42d1ab17","src":"https://developer.qcloudimg.com/http-save/audit-11725165/3eb144164dd86caa710a9526fb25999a.png","extension":"","align":"center","alt":"","showAlt":false,"href":"","boxShadow":"","width":"","aspectRatio":0,"status":"success","showText":true,"isPercentage":false,"percentage":0,"isHoverDragHandle":false}},{"type":"paragraph","attrs":{"id":"c6d82961-12b9-4963-b9f2-8824336e8ba6","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"比如你要测试一个有多个配置选项的功能,传统方式可能需要上百个测试用例。用这个 Skill,它能智能生成一组优化过的测试用例,用 20-30 个用例就能达到成对覆盖的效果。"}]},{"type":"paragraph","attrs":{"id":"91d1d21a-8cef-48a1-ab3f-0bfa80fe4b9c","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"原理其实是利用组合数学的原理,确保任意两个参数的所有可能组合都至少被测试一次。它不是随机生成,而是有数学保证的系统化方法。"}]},{"type":"paragraph","attrs":{"id":"8e04f41b-cb3e-4467-b613-d24551beac67","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"对于参数配置复杂的系统特别有用。比如测试不同浏览器、操作系统、语言设置的兼容性,用这个 Skill 能大幅减少测试工作量,同时保证覆盖率。"}]},{"type":"heading","attrs":{"id":"c949e7e6-52c3-4bf6-bedd-abb7bf8918fc","textAlign":"inherit","indent":0,"level":3,"isHoverDragHandle":false},"content":[{"type":"text","marks":[{"type":"bold"}],"text":"04 测试驱动开发:TDD Skill"}]},{"type":"paragraph","attrs":{"id":"b329075d-1427-4ee4-b514-fd89b685d9ae","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"这个是 obra 开发的 Superpowers 技能库中的一部分,专门用来实践 TDD(测试驱动开发)工作流。"}]},{"type":"paragraph","attrs":{"id":"9df1265a-c2a6-46e3-81b2-8e53f7f356e3","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"TDD 的理念很好,但实际执行起来很多人都坚持不下来。要先写测试、看测试失败、写实现、让测试通过,这个循环需要很强的自律。有了这个 Skill,AI 会严格按照 TDD 流程来工作。"}]},{"type":"paragraph","attrs":{"id":"d65059b9-1a6d-4d03-964f-c4e3ad278de1","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"比如你要实现一个新功能,这个 Skill 会:"}]},{"type":"bulletList","attrs":{"id":"106b212b-919a-4d57-b663-d6c85381b18a","isHoverDragHandle":false},"content":[{"type":"listItem","attrs":{"id":"7f49d7d2-3057-4e5f-88d3-b0acdee8514f"},"content":[{"type":"paragraph","attrs":{"id":"4eec20c3-c3a7-4363-bb8c-77c1209cf404","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"先让你确认需求"}]}]},{"type":"listItem","attrs":{"id":"1c2f96d0-fa09-4771-9816-ff181a79a7d8"},"content":[{"type":"paragraph","attrs":{"id":"c6ef16e8-d463-4157-81be-af509b1347af","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"自动编写失败的测试用例(Red)"}]}]},{"type":"listItem","attrs":{"id":"90b2a06f-2394-4bf7-9f92-5ec1057a335b"},"content":[{"type":"paragraph","attrs":{"id":"dddf8e4b-583e-4f1e-9587-78d093758f53","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"编写最小化的实现代码让测试通过(Green)"}]}]},{"type":"listItem","attrs":{"id":"e105e7b2-f93d-42de-a21d-980c3642e5d3"},"content":[{"type":"paragraph","attrs":{"id":"1bdd97a8-903d-459b-92e7-9057fc80a9b5","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"重构代码优化设计(Refactor)"}]}]},{"type":"listItem","attrs":{"id":"fbfae05b-7214-43c6-9c39-507d3f620c9a"},"content":[{"type":"paragraph","attrs":{"id":"aaf4d793-98f5-40f1-abdc-04077c4f8b47","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"循环这个过程直到功能完成"}]}]}]},{"type":"image","attrs":{"id":"88a01067-757d-407b-92d8-8e39752b5d9a","src":"https://developer.qcloudimg.com/http-save/audit-11725165/c1a53e7d39a57229cea12c582939122d.png","extension":"","align":"center","alt":"","showAlt":false,"href":"","boxShadow":"","width":"","aspectRatio":0,"status":"success","showText":true,"isPercentage":false,"percentage":0,"isHoverDragHandle":false}},{"type":"paragraph","attrs":{"id":"ea289a89-65e4-466f-8ced-4624f8f2538f","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"它强调真正的红-绿-重构循环,还有 YAGNI(你不需要它)和 DRY(不要重复自己)原则。这些都是 TDD 的核心理念,但很多人在实际开发中容易忘记。"}]},{"type":"paragraph","attrs":{"id":"45723d43-5b17-4901-af46-3759111f6c8f","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"说白了,这个 Skill 就像一个严格的 TDD 教练,确保你按照最佳实践来开发。对于想学习或坚持 TDD 的开发者来说,还挺有用的。"}]},{"type":"heading","attrs":{"id":"6e8257d5-9fc8-4e3f-ad7c-0dde4fabfbed","textAlign":"inherit","indent":0,"level":3,"isHoverDragHandle":false},"content":[{"type":"text","marks":[{"type":"bold"}],"text":"05 测试修复:Test Fixing Skill"}]},{"type":"paragraph","attrs":{"id":"727bec76-bc13-4c3d-a79c-65c0990060d5","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"这个是 mhattingpete 在 claude-skills-marketplace 中开发的测试修复 Skill。"}]},{"type":"paragraph","attrs":{"id":"67b6e0cc-1f76-47e5-a27a-b16bc6760cf7","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"最头疼的就是测试失败了,要一个个去看错误日志、定位问题、修复代码。特别是 CI/CD 跑了一堆测试,失败了十几个,你得花半天时间去修。"}]},{"type":"paragraph","attrs":{"id":"e7f1f338-a8e0-464b-80fb-0c3eef849bad","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"这个 Skill 能系统化地识别和修复失败的测试。它会智能地分组错误,找出相同根因的测试,然后提出修复方案。"}]},{"type":"image","attrs":{"id":"f9e600e5-05ab-48a5-affe-73fd391e5474","src":"https://developer.qcloudimg.com/http-save/audit-11725165/c59b2e7d1721ed5c68c352f27ed89a18.png","extension":"","align":"center","alt":"","showAlt":false,"href":"","boxShadow":"","width":"","aspectRatio":0,"status":"success","showText":true,"isPercentage":false,"percentage":0,"isHoverDragHandle":false}},{"type":"paragraph","attrs":{"id":"8240982f-2e3a-4a23-8c2e-94cb45650265","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"比如你的测试套件有 20 个失败的测试,这个 Skill 会分析发现其中 15 个都是因为同一个 API 接口变更导致的。它会把这些测试分组,提供统一的修复建议,而不是让你一个个去看。"}]},{"type":"paragraph","attrs":{"id":"59546779-9b8c-44ca-8051-602f245c1ef3","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"它采用的是智能错误分组策略,能识别出失败测试之间的关联性。这样可以避免重复工作,提高修复效率。"}]},{"type":"paragraph","attrs":{"id":"093a1060-fd6e-4f1a-b730-44dd3d6a42f0","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"对于维护大型测试套件的团队特别有用。当测试失败时,不用再手动一个个排查,AI 能帮你快速定位问题并提供修复方案。"}]},{"type":"heading","attrs":{"id":"1a1383de-c5db-4573-b266-58eb882e8328","textAlign":"inherit","indent":0,"level":3,"isHoverDragHandle":false},"content":[{"type":"text","marks":[{"type":"bold"}],"text":"06 系统化调试:Systematic Debugging Skill"}]},{"type":"paragraph","attrs":{"id":"7190f41b-a989-456d-81b5-474e61396385","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"最后这个也是来自 obra 的 Superpowers 库,是专门用来系统化调试问题的 Skill。"}]},{"type":"paragraph","attrs":{"id":"2b8617c8-c292-4fa0-959f-52835e0df9ac","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"遇到 Bug 时,很多人的做法是凭直觉猜测、随机尝试。这种方式效率低,还容易漏掉真正的根因。这个 Skill 提供了一套四阶段的根因分析流程。"}]},{"type":"paragraph","attrs":{"id":"7e13124f-67c5-4ca1-a6a2-ab9632204b81","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"它包含了多个子技能:root-cause-tracing(根因追踪)、defense-in-depth(深度防御)、condition-based-waiting(条件等待)等技术。"}]},{"type":"image","attrs":{"id":"a4a0d706-b0b4-407a-aa52-81d1f7aba8e6","src":"https://developer.qcloudimg.com/http-save/audit-11725165/ecd09507c4069d11a099e23b6054f72e.png","extension":"","align":"center","alt":"","showAlt":false,"href":"","boxShadow":"","width":"","aspectRatio":0,"status":"success","showText":true,"isPercentage":false,"percentage":0,"isHoverDragHandle":false}},{"type":"paragraph","attrs":{"id":"bf8b954d-449f-480a-8bd6-5326a4599814","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"比如你遇到一个偶发的测试失败。这个 Skill 会:"}]},{"type":"bulletList","attrs":{"id":"44bf46a8-b71a-4b14-8b7f-7cf5b175f0ff","isHoverDragHandle":false},"content":[{"type":"listItem","attrs":{"id":"cb15ace1-5687-4695-b40f-84775e55a675"},"content":[{"type":"paragraph","attrs":{"id":"73cf1252-12b6-4ffc-ac14-61ab8125df9c","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"第一步:收集错误信息和上下文"}]}]},{"type":"listItem","attrs":{"id":"362c7833-bb5f-4526-9b61-643e1d78b2c2"},"content":[{"type":"paragraph","attrs":{"id":"88eccd7f-3e1a-4f3f-b7c4-cb1213c10be5","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"第二步:追踪错误的传播路径,找到最初触发点"}]}]},{"type":"listItem","attrs":{"id":"1d7606cc-cd89-43ea-91d1-ae5cd232ac20"},"content":[{"type":"paragraph","attrs":{"id":"0e109e3f-d180-4f67-aa6f-b64174f63e96","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"第三步:分析为什么会触发这个错误"}]}]},{"type":"listItem","attrs":{"id":"15b0e664-92b5-4491-b96f-34e494e078b9"},"content":[{"type":"paragraph","attrs":{"id":"ca03da0f-4613-469e-b931-78b27e293340","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"第四步:验证修复方案,确保真正解决问题"}]}]}]},{"type":"paragraph","attrs":{"id":"3ed30695-3bff-4ee3-a510-b5df2a02300a","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"原理其实是把专业调试工程师的思维模式结构化了。它不是直接给你答案,而是引导你系统化地分析问题,确保找到真正的根因而不是表面现象。"}]},{"type":"paragraph","attrs":{"id":"374dc9ab-3271-42d9-8cd1-037779601cb5","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","text":"说白了,这个 Skill 让 AI 成为一个经验丰富的调试专家。特别是对于复杂的、深层的错误,这种系统化的方法能大幅提高调试效率。"}]},{"type":"heading","attrs":{"id":"52c2ab5d-8bf5-48c5-8844-1b4828970ebf","textAlign":"inherit","indent":0,"level":3,"isHoverDragHandle":false},"content":[{"type":"text","marks":[{"type":"bold"}],"text":"结语"}]},{"type":"paragraph","attrs":{"id":"9aca67a0-74a6-4474-9480-417737f311e0","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false},"content":[{"type":"text","marks":[{"type":"textStyle","attrs":{"color":"","background":""}}],"text":"专注分享AIGC相关前沿技术以及测试领域的新工具、新方法、新思路。如果你想第一时间了解更多Skills应用技巧,可以关注公众号“AI智享空间于老师”。用好这些 Skills,让 AI 成为你的助手,把时间花在更有价值的工作上。"}]},{"type":"paragraph","attrs":{"id":"0a42a626-69b2-42ab-9f9b-c1028a30906e","textAlign":"inherit","indent":0,"color":null,"background":null,"isHoverDragHandle":false}}]}

下一篇
举报
领券