摘要: 这是一个使用云端Openclaw的方法,本地只要运行WorkBuddy就可以,本地运行设置非常简单,只需要2-3个步骤 1.电脑端下载安装WorkBuddy 官方网站: https://copilot.tencent.com/work/ 鼠标移动到右上方的下载按钮,然后在下拉列表选择WorkBudd 阅读全文
posted @ 2026-04-21 19:12 coffee~ 阅读(249) 评论(0) 推荐(0)
摘要: 本文主要针对手机端使用Termux工具安装Openclaw,Android、IOS都可以实现。 使用Termux终端命令行工具,在Termux中安装Proot-distro、Ubuntu、zsh, 并且安装相应的依赖,如homebrew、git、unzip、go(1.25.8以上版本)等,完成安装O 阅读全文
posted @ 2026-04-21 00:16 coffee~ 阅读(234) 评论(0) 推荐(0)
摘要: npm在国内存在下载速度比较慢的问题。为解决这个问题,需要切换npm下载源为国内的镜像源 npm国内下载镜像汇总: npm官方原始镜像: https://registry.npmjs.org/ 淘宝npm镜像:http://registry.npmmirror.com 阿里云npm镜像: https 阅读全文
posted @ 2026-03-09 11:28 coffee~ 阅读(370) 评论(0) 推荐(0)
摘要: 需要先配置adb环境 所需文件下载: (1)USB驱动(2个链接中选择1个下载就可以) 微云链接: https://share.weiyun.com/GqZodxmZ google官方链接:https://developer.android.com/studio/run/win-usb (2)系统包 阅读全文
posted @ 2024-12-14 13:52 coffee~ 阅读(11810) 评论(4) 推荐(1)
摘要: 前提: (1)安装了nodejs (2)创建了测试目录 (3)使用Vscode安装了Playwright插件 可以参考官方文档:https://playwright.dev/docs/getting-started-vscode 在vscode界面最左侧的按钮选择Explorer, 创建一个与tes 阅读全文
posted @ 2024-11-09 23:12 coffee~ 阅读(199) 评论(0) 推荐(0)
摘要: 使用Cypress内置的trigger方法实现拖拽一个元素到另一个同类型元素,实现排序 Typescript实现方法: export function dragAndDrop(sourceLocator: string, targetLocator: string) { const dataTran 阅读全文
posted @ 2024-10-26 16:48 coffee~ 阅读(82) 评论(0) 推荐(0)
摘要: git初始化 git init git拉取代码 git clone https://www.google.com/index.git git拉取某一个分支 git clone -b feature/123 https://www.google.com/index.git git上传文件 git st 阅读全文
posted @ 2024-10-26 15:38 coffee~ 阅读(49) 评论(0) 推荐(0)
摘要: 使用Playwright进行UI自动化测试实践尝试 官方参考文档:Getting started - VS Code | Playwright 操作步骤: 1.安装VS code 2.VS code安装Playwright Test for VSCode插件 3.添加测试文件夹和文件 创建用于UI自 阅读全文
posted @ 2024-06-28 10:14 coffee~ 阅读(1252) 评论(0) 推荐(0)
摘要: import datetime # 获取当前日期和时间now = datetime.now()# 获取星期几,其中星期一到星期日对应的整数分别为0到6week = now.weekday() #返回结果--星期一为 0,星期二为 1,以此类推,星期日为 6 阅读全文
posted @ 2024-06-27 17:20 coffee~ 阅读(376) 评论(0) 推荐(1)
摘要: cd / 跳转到根目录cd ~ root用户,相当于cd /root; 非root用户,相当于cd/home/当前用户名cd - 返回进入此目录之前所在目录cd . 进入当前目录 cd .. 进入上级目录 阅读全文
posted @ 2024-03-15 21:57 coffee~ 阅读(86) 评论(0) 推荐(0)