会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
yile
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
3
4
5
6
7
下一页
2019年10月31日
git上传项目命令方式
摘要: 1.命令行中,输入 git init 2.将文件夹中的内容全部添加到git管理中 git add . 3.提交 git commit -m 'first commit' 4.连接github仓库 git remote add origin https://github.com/shench56123
阅读全文
posted @ 2019-10-31 09:59 yile
阅读(4674)
评论(0)
推荐(0)
2019年10月30日
windows系统.ssh文件夹脚本创建id_rsa和id_rsa.pub
摘要: $ ssh-keygen -t rsa -C "youremail@example.com" 一直回车就可以看到id_rsa和id_rsa.pub这两个文件 把刚才id_rsa.pub里面的内容复制到Title下面的Key内容框里面,最后点击Add SSH key,这样就完成了SSH Key的加密
阅读全文
posted @ 2019-10-30 14:12 yile
阅读(5722)
评论(0)
推荐(0)
2019年10月25日
python日期加减操作
摘要: 转https://www.cnblogs.com/linkenpark/p/8079337.html
阅读全文
posted @ 2019-10-25 11:54 yile
阅读(170)
评论(0)
推荐(0)
2019年10月24日
python xlrd
摘要: from xlrd import open_workbookclass Read_xlxs: def __init__(self, file): self.file = file self.test_data = [] def read_file(self, sheetname): self.dat
阅读全文
posted @ 2019-10-24 14:19 yile
阅读(265)
评论(0)
推荐(0)
2019年9月15日
断言框架
摘要: jsonpath, hamcrest,json schema jq curl http://www.baidu.com | jq '.' | grep
阅读全文
posted @ 2019-09-15 18:14 yile
阅读(188)
评论(0)
推荐(0)
2019年9月14日
接口测试工具
摘要: 1.curl:http请求和模拟的工具标准,所有的工具都会提供curl命令的转换功能 2.postman 交互很强,但是不适合做自动化,离真正的框架还有很大的距离 3.requests 4.jmeter
阅读全文
posted @ 2019-09-14 17:19 yile
阅读(139)
评论(0)
推荐(0)
2019年9月13日
fake stub mock
摘要: fake:替代real环境,有简化的逻辑 stub:纯预定数据,不能动态变更 mock:可自定义返回 proxy:挡板,可在原结果上进行修改 spy:监听特定方法的调用 Charles map remote:切换线上环境、备份环境或者内部的测试环境 Fake 不同请求-->不同结果 map loca
阅读全文
posted @ 2019-09-13 20:59 yile
阅读(377)
评论(0)
推荐(0)
2019年9月11日
curl命令添加代理
摘要: curl http://www.baidu.com -x http://127.0.0.1:8888 访问百度加代理
阅读全文
posted @ 2019-09-11 21:30 yile
阅读(2567)
评论(0)
推荐(0)
查找模拟器
摘要: which emulator $(which emulator) -list-avds 列出模拟器 $(which emulator) @Nexus_5X_API_28_x86 启动模拟器 Nexus_5X_API_28_x86 为模拟器设备
阅读全文
posted @ 2019-09-11 21:28 yile
阅读(186)
评论(0)
推荐(0)
2019年9月9日
抓包工具及命令
摘要: sudo tcpdump port 80 -v -w /tmp/http.log TcpDump + WireShark 网络嗅探 wireshark nc www.baidu.com 80 -v 模拟浏览器发送请求 GET / HTTP/1.0Host: www.baidu.com telnet
阅读全文
posted @ 2019-09-09 07:44 yile
阅读(368)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
下一页
公告