摘要: 1. 自我介绍,项目介绍 2. 测试用例: 购物车 一个矿泉水瓶 3. 数据库: 名称,单价,数量 求名称,总价 4. 怎么确定是前端的BUG还是后端的BUG? 测试如何判断是前端的bug还是后端的bug_怎么判断bug是前端还是后端问题-CSDN博客 可以利用抓包工具,可以从三个方面进行分析:请求 阅读全文
posted @ 2025-03-08 19:14 胖妞麻麻 阅读(17) 评论(0) 推荐(0)
摘要: 1. select count(*) sku_id from tmall_sku; 2. 有的 id 为自增主键: 现在报错是因为这个自增主键冲突了: id你先把之前的delete了,该插入的SQL应该是这样,你看看有没有问题INSERT INTO "public"."tmall_aggregate 阅读全文
posted @ 2023-10-26 11:39 胖妞麻麻 阅读(13) 评论(0) 推荐(0)
摘要: #/usr/local/python3/bin/python3 -m venv venv_jenkins#source $WORKSPACE/venv_jenkins/bin/activatepip install --upgrade pippip install -r requirements.t 阅读全文
posted @ 2023-10-26 10:07 胖妞麻麻 阅读(18) 评论(0) 推荐(0)
摘要: 1. 报错: HOOK-ERROR in before_all: ModuleNotFoundError: No module named 'appium.webdriver.common.mobileby' 解决 pip3 uninstall Appium-Python-Client pip3 i 阅读全文
posted @ 2023-10-24 10:42 胖妞麻麻 阅读(733) 评论(0) 推荐(0)
摘要: sudo chmod 777 reports/TESTS-tmall_catalogue_export.xml 阅读全文
posted @ 2023-10-23 16:20 胖妞麻麻 阅读(18) 评论(0) 推荐(0)
摘要: 1. delete column spu==null db.channel_spu.deleteMany({ spuId: null }) 例如,删除所有年龄小于25岁的用户信息:db.users.deleteMany({age: {$lt: 25}})2. db.channel_spu.delet 阅读全文
posted @ 2023-09-27 15:45 胖妞麻麻 阅读(23) 评论(0) 推荐(0)
摘要: 1. redis connection 阅读全文
posted @ 2023-09-21 14:45 胖妞麻麻 阅读(27) 评论(0) 推荐(0)
摘要: Redis connection 阅读全文
posted @ 2023-09-21 14:42 胖妞麻麻 阅读(11) 评论(0) 推荐(0)
摘要: 1. selenium chrome: calenda time And input created time from "2023-07-01 17:19" @step('input created time from "{Keyword}"')def step_impl(context, Key 阅读全文
posted @ 2023-09-13 09:48 胖妞麻麻 阅读(14) 评论(0) 推荐(0)
摘要: 1. prefs = {'profile.default_content_settings.popups': 0, 'download.default_directory': filepath}OPTIONS.add_experimental_option('prefs', prefs) 阅读全文
posted @ 2023-09-12 15:38 胖妞麻麻 阅读(46) 评论(0) 推荐(0)