Loading

摘要: 列出连接设备 adb devices -l 查看打开的应用信息 adb shell dumpsys activity recents | find "intent={" 查看手机上打开应用的package名称 adb shell dumpsys window w | findstr \/ | fin 阅读全文
posted @ 2021-06-01 14:58 猫鱼故巷 阅读(87) 评论(0) 推荐(0) 编辑
摘要: Robot Framework 内置变量 Robot Framework 内部提供了一下直接可用的内置变量 1. 操作系统相关变量 内置的操作系统相关的变量,减少了测试数据对操作系统之间的差异性的关注 RF 中可用的操作系统相关的内置变量如下表: 变量 用途 ${CURDIR} 测试数据文件所在目录 阅读全文
posted @ 2021-05-31 14:52 猫鱼故巷 阅读(420) 评论(0) 推荐(0) 编辑
摘要: 持续更新... 函数 1、找出一个list中的最小和最大值,并返回一个tuple def findMinAndMax(L): min = L and L[0] or None max = L and L[0] or None for x in L: min = min > x and x or mi 阅读全文
posted @ 2021-01-13 14:14 猫鱼故巷 阅读(174) 评论(0) 推荐(0) 编辑
摘要: oracle10版本以后都有回收机制,默认开启 拓展sql语句 --删除表,进入到回收站 drop table ahic_sms_interface$_; --查看是否开启了回收站,on代表开启了 SELECT NAME, VALUE FROM V$PARAMETER WHERE NAME='rec 阅读全文
posted @ 2021-01-09 10:17 猫鱼故巷 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 1、准备python3x 安装包 python下载地址 2、安装 安装gcc等编译环境 yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdb 阅读全文
posted @ 2020-12-23 14:17 猫鱼故巷 阅读(263) 评论(0) 推荐(0) 编辑
摘要: 更新中... 阅读全文
posted @ 2020-12-16 20:05 猫鱼故巷 阅读(91) 评论(0) 推荐(0) 编辑
摘要: # CSS Selector 选择单个元素 ```find_element_by_css_selector(CSS Selector参数)``` # 选择所有元素 ```find_elements_by_css_selector(CSS Selector参数)``` # tag名 所有的tag名为d 阅读全文
posted @ 2020-12-11 20:46 猫鱼故巷 阅读(369) 评论(0) 推荐(0) 编辑
摘要: 当前窗口的标题栏 文本 webdriver.title 最大等待时间,等待期间循环查询(0.5s) webdriver.implicitly_wait() //()填写最大等待时间单位s 保存当前窗口的句柄 mainWindow = wd.current_window_handle //mainWi 阅读全文
posted @ 2020-12-11 20:44 猫鱼故巷 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 绝对路径选择 从根节点开始的,到某个节点,每层都依次写下来,每层之间用 / 分隔的表达式,就是某元素的 绝对路径 自动化程序要使用Xpath来选择web元素,应该调用 WebDriver对象的方法 find_element_by_xpath 或者 find_elements_by_xpath: el 阅读全文
posted @ 2020-12-11 20:43 猫鱼故巷 阅读(429) 评论(0) 推荐(0) 编辑
摘要: 官网:传送门 from hyrobot.common import * 步骤 STEP(1, '登录系统') //-- 第 1 步 -- 登录网站 检查点 list = ['客户', '药品', '订单'] CHECK_POINT('侧边栏菜单是否正确',list == ['客户', '药品', ' 阅读全文
posted @ 2020-12-11 20:40 猫鱼故巷 阅读(1005) 评论(2) 推荐(1) 编辑