02 2018 档案

nginx 配置 记录
摘要:nginx.conf user root; # 执行nginx 用户events { worker_connections 1024;}http { include /etc/nginx/mime.types; # 识别文件类型, 防止被转化为文本类型 解决css 无法生效的问题 default_t 阅读全文

posted @ 2018-02-28 12:33 0o0o0o0o0o000 阅读(75) 评论(0) 推荐(0)

appium 环境配置
摘要:1.jdk1.6.0 (64位) 2.android-sdk_r24.3.4-windows 3.python:2.7(3.6也可以) D:\python和D:\python\Scripts,添加到环境变量path下 (安装目录以及目录下的script) 4.appium:1.4.13.1 # np 阅读全文

posted @ 2018-02-27 19:13 0o0o0o0o0o000 阅读(83) 评论(0) 推荐(0)

QTP 学习记录
摘要:update by 2018/2/27 阅读全文

posted @ 2018-02-27 16:31 0o0o0o0o0o000 阅读(66) 评论(0) 推荐(0)

monkey-学习记录
摘要:update by 2018/2/27 adb shell monkey -p <package name> --throttle 100 --pct-touch 20 --pct-trackball 20 --pct-motion 2 --ignore-crashes -s 23333333 -v 阅读全文

posted @ 2018-02-27 13:12 0o0o0o0o0o000 阅读(124) 评论(0) 推荐(0)

利用 SSH 完成 Git 与 GitHub 的绑定
摘要:1 生成ssh key ssh-keygen -t rsa 然后连续三次回车 然后会生成id_rsa(密钥) 和 id_rsa.pub(公钥) Linux 默认在~/.ssh 2 添加 ssh key 登录GitHub 用户-settings-SSH AND GPG KEYs 点击new SSH k 阅读全文

posted @ 2018-02-26 14:51 0o0o0o0o0o000 阅读(145) 评论(0) 推荐(0)

python 模拟浏览器上传文件
摘要:import os, random, sys, requests from requests_toolbelt.multipart.encoder import MultipartEncoder url = 'http://127.0.0.1/sendmsg' argvstr = sys.argv[ 阅读全文

posted @ 2018-02-26 11:56 0o0o0o0o0o000 阅读(229) 评论(0) 推荐(0)

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

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

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 阅读(195) 评论(0) 推荐(0)

常用命令收集
摘要: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 阅读(467) 评论(0) 推荐(0)

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 阅读(145) 评论(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 阅读(152) 评论(0) 推荐(0)

selenium-python 学习
摘要:2018/2/22 创建 2018/2/22 创建 阅读全文

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

monkey 学习记录
摘要:2018/2/22 创建 2018/2/22 创建 阅读全文

posted @ 2018-02-22 22:45 0o0o0o0o0o000 阅读(52) 评论(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 阅读(76) 评论(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 阅读(180) 评论(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 阅读(100) 评论(0) 推荐(0)

导航