2018年2月26日

接口测试-学习记录

摘要: create by 2018/2/26 一般需要考虑的 输入条件(输入的数据类型类型: int, string, double, float, long , 输入的数据范围 ,以及执行的约束条件, 输出内容的断言判断) 需要注意的点(典型问题):1,输入异常数据导致程序报错, 2,执行过程中,出现其 阅读全文

posted @ 2018-02-26 09:43 0o0o0o0o0o000 阅读(109) 评论(0) 推荐(0) 编辑

2018年2月24日

selenium chrome python 资料

摘要: http://blog.csdn.net/huilan_same/article/details/51896672 # 历史chrome版本 与 chromedriver 之间的对应 http://chromedriver.storage.googleapis.com/index.html # ch 阅读全文

posted @ 2018-02-24 14:45 0o0o0o0o0o000 阅读(170) 评论(0) 推荐(0) 编辑

2018年2月23日

常用命令收集

摘要: Linux screen -ls 查看窗口列表 screen -S XX 创建窗口 screen -D XX 窗口 screen -A D 退出窗 screen -S session_name -X quit 使用screen名字,kill掉。 screen - r XX 激活窗口 find /ho 阅读全文

posted @ 2018-02-23 17:09 0o0o0o0o0o000 阅读(427) 评论(0) 推荐(0) 编辑

2018年2月22日

Python 爬虫

摘要: 2018/2/22 创建 # -*- encode: utf-8 -*-import threadingimport urllib.requestimport tracebackimport requestsimport reimport osimport time# 正则列表img_url_par 阅读全文

posted @ 2018-02-22 22:48 0o0o0o0o0o000 阅读(135) 评论(0) 推荐(0) 编辑

adb 命令记录

摘要: 2018/2/22 创建 adb shell service call window 1 i32 4939 # 开启view server 服务 ,目测需要开发版手机系统 以及root adb shell service call window 3 # 查询view server 服务的状态 201 阅读全文

posted @ 2018-02-22 22:46 0o0o0o0o0o000 阅读(134) 评论(0) 推荐(0) 编辑

selenium-python 学习

摘要: 2018/2/22 创建 2018/2/22 创建 阅读全文

posted @ 2018-02-22 22:45 0o0o0o0o0o000 阅读(63) 评论(0) 推荐(0) 编辑

monkey 学习记录

摘要: 2018/2/22 创建 2018/2/22 创建 阅读全文

posted @ 2018-02-22 22:45 0o0o0o0o0o000 阅读(42) 评论(0) 推荐(0) 编辑

appium-python 学习记录

摘要: 2018/2/22 创建 命令行启动 appium 常用参数: -a 地址 默认127.0.0.1 -p 端口 4723 --no-reset 每次启动不重装待测app --full-reset 通过卸载应用重置 --log-level # 打印日志的级别 PS C:\Users\test\AppD 阅读全文

posted @ 2018-02-22 22:43 0o0o0o0o0o000 阅读(70) 评论(0) 推荐(0) 编辑

NGINX HTTPS 配置

摘要: NGINX.conf events { worker_connections 1024;}http {server { listen 443; server_name XXX; ssl on; ssl_certificate /etc/nginx/ssl/server.crt; # 证书配置 ssl 阅读全文

posted @ 2018-02-22 22:42 0o0o0o0o0o000 阅读(158) 评论(0) 推荐(0) 编辑

supervisor 配置记录

摘要: easy_install supervisor 安装 echo_supervisord_conf > /etc/supervisor/supervisord.conf 生成supervisor配置修改supervisor.conf 配置 修改include部分 将配置文件夹导进去 ps job 根目 阅读全文

posted @ 2018-02-22 22:36 0o0o0o0o0o000 阅读(93) 评论(0) 推荐(0) 编辑

导航