会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
博客e用户
博客园
首页
新随笔
联系
订阅
管理
1
2
下一页
2020年4月30日
安装pip
摘要: https://bootstrap.pypa.io/ sudo python3 get-pip.py
阅读全文
posted @ 2020-04-30 17:16 博客e用户
阅读(191)
评论(0)
推荐(0)
2020年3月26日
python_pysnooper的使用
摘要: 1.安装pip install pysnooper 2.使用方法 #! /usr/bin/python3 import pysnooper @pysnooper.snoop() def hello(a,b): tmp = a + b tmp += 'tmp' print(tmp) 执行hello.p
阅读全文
posted @ 2020-03-26 18:16 博客e用户
阅读(266)
评论(0)
推荐(0)
2020年3月22日
docker-4
摘要: 1.docker在linux上的安装 yum install -y docker systemctl enable docker && systemctl start docker sysctl net.bridge.bridge-nf-call-iptables=1 2.配置国内镜像 https:
阅读全文
posted @ 2020-03-22 08:34 博客e用户
阅读(178)
评论(0)
推荐(0)
2020年1月29日
Part-接口测试2
摘要: 1.JsonPath:像xpath一样,提取json数值 2.json schema:github -> jsonschema from jsonshema import validate schema = { "type":"object", "properties":{ "price":{"ty
阅读全文
posted @ 2020-01-29 19:55 博客e用户
阅读(80)
评论(0)
推荐(0)
2020年1月27日
移动自动化面试2
摘要: 一、测试分为哪几个阶段 单元测试 集成测试(各个模块集成在一起) 系统测试 验收测试 二、如何做好测试计划 明确测试什么 明确测试目标 明确项目开始与结束时间 明确测试方案 明确资料的位置, 三、测试用例设计方法 等价类划分法,比如测试大于0的整数,测试-19,0,5,100,99999 边界值分析
阅读全文
posted @ 2020-01-27 13:15 博客e用户
阅读(187)
评论(0)
推荐(0)
2020年1月23日
安卓_1_几个命令
摘要: 1.adb shell am start -S -W -n appname 2.adb shell am force-stop packagename 3.adb shell input keyevent 4.adb shell dumpsys cpuinfo | grep packagename
阅读全文
posted @ 2020-01-23 13:54 博客e用户
阅读(244)
评论(0)
推荐(0)
2020年1月12日
jenkins_2
摘要: 1.jenkins pipline:一些列jenkins插件将整个CD(持续交付过程)用解释性代码Jenkinsfile来描述(之前的都是通过配置设置的,这次是通过file) 2.创建一个流水线任务 3.再global tool configuration里添加一个maven,名字叫M3,官方的名字
阅读全文
posted @ 2020-01-12 17:58 博客e用户
阅读(201)
评论(0)
推荐(0)
2020年1月7日
python_8_集合
摘要: 1.集合:可变集合set,不可变集合frozenset,集合是无序不重复的 set('hello') set9[1,2,3,4]) set((1,2,3)) 2.添加元素 > add:将元素整体作为一个添加到set中 > update:将元素分成单个字符,添加到set中,并且去掉重复的 3.删除:r
阅读全文
posted @ 2020-01-07 16:10 博客e用户
阅读(168)
评论(0)
推荐(0)
2019年12月24日
python_4
摘要: 1.迭代器:通过iter()方法获得了list的迭代对象,然后就可以通过next()方法来访问list中的元素了,当容器中没有可访问元素时,会抛出StopIteration异常终止迭代器 data = [1,2,3,4,5] itr = iter(data) print(itr.__next__()
阅读全文
posted @ 2019-12-24 08:24 博客e用户
阅读(204)
评论(0)
推荐(0)
2019年12月17日
python_3_字符串
摘要: 1.strip,lstrip,rstrip " hi, ming ".strip() #去掉前后空格 "@hi,ming@".strip("@") #去掉@ 2.大小写互换 # 1.lower() # 2.upper() # 3.swapcase() 大小写互换 3.左右填充 "sos".ljust
阅读全文
posted @ 2019-12-17 14:51 博客e用户
阅读(197)
评论(0)
推荐(0)
1
2
下一页
公告