摘要: 使用Cypress内置的trigger方法实现拖拽一个元素到另一个同类型元素,实现排序 Typescript实现方法: export function dragAndDrop(sourceLocator: string, targetLocator: string) { const dataTran 阅读全文
posted @ 2024-10-26 16:48 coffee~ 阅读(2) 评论(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~ 阅读(5) 评论(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~ 阅读(149) 评论(0) 推荐(0) 编辑
摘要: import datetime # 获取当前日期和时间now = datetime.now()# 获取星期几,其中星期一到星期日对应的整数分别为0到6week = now.weekday() #返回结果--星期一为 0,星期二为 1,以此类推,星期日为 6 阅读全文
posted @ 2024-06-27 17:20 coffee~ 阅读(125) 评论(0) 推荐(0) 编辑
摘要: cd / 跳转到根目录cd ~ root用户,相当于cd /root; 非root用户,相当于cd/home/当前用户名cd - 返回进入此目录之前所在目录cd . 进入当前目录 cd .. 进入上级目录 阅读全文
posted @ 2024-03-15 21:57 coffee~ 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 1.可选步骤--把WSL 1设置为默认版本以管理员身份打开Powershell,输入命令wsl --set-default-version 1 *2.启用适用于Linux的Windows子系统控制面板--程序--程序和功能--启用或关闭Windows功能选中 适用于Linux的Windows子系统, 阅读全文
posted @ 2024-03-12 15:49 coffee~ 阅读(270) 评论(0) 推荐(0) 编辑
摘要: 刷机没有退出谷歌账号,无法跳过开机验证 解决方式 关机,手机按住电源+音量减小键,进入fastboot模式 fastboot erase frp 阅读全文
posted @ 2024-02-16 23:34 coffee~ 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 在文件a.py中引入文件b.py文件里面的所有变量 在a.py中使用: from b import * 相当于把文件b.py里面的所有变量当作a.py文件的全局变量 阅读全文
posted @ 2024-02-16 23:21 coffee~ 阅读(63) 评论(0) 推荐(0) 编辑
摘要: pycharm给代码批量添加tab(整体右移) 选中需要添加tab的所有代码行,点击Tab pycharm给代码批量取消tab(整体左移): 选中需要取消tab的所有代码行,点击Shift+Tab 阅读全文
posted @ 2024-02-16 23:17 coffee~ 阅读(451) 评论(0) 推荐(0) 编辑
摘要: 要解决的问题: 从浏览器复制出来的headers/参数样式 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537 阅读全文
posted @ 2024-02-02 10:19 coffee~ 阅读(69) 评论(0) 推荐(0) 编辑