摘要:
1、线程组2需要用到线程组1的token,可以使用BeanShell后置处理器BeanShell PostProcessor 2、BeanShell PostProcessor 使用方式 如果需要获取多个值,值与值直接使用空格隔开 Parameters:${token} ${member_id} $ 阅读全文
摘要:
1、查看当前Chrome版本 chrome://version/ 2、驱动下载地址 http://npm.taobao.org/mirrors/chromedriver/ 3、下载的驱动放到Python安装路线下面 阅读全文
摘要:
班级表class 成绩表source 学生表student 1、查询班级一班的各科成绩最高的学生信息 使用左连接 left joinSELECT a.stuid, a.stuname, a.course, a.source, a.classname FROM ( SELECT student.stu 阅读全文
摘要:
1、aapt dump badging apk名称 2、adb logcat | grep START 或者 adb shell "logcat | grep START" 然后在模拟器中点击要获取package的app,查找cmp,cmp中前面是package name后面是activity na 阅读全文
摘要:
import loggingfrom logging import handlerslogger = logging.getLogger() #先实例化一个logger对象,先创建一个办公室 logger.setLevel(logging.DEBUG) #设置日志的级别的人cl = logging. 阅读全文
摘要:
下载地址 1、http://nmon.sourceforge.net/pmwiki.php?n=Site.Download tar xvzf *.tar.gz,需要配置权限 chmod -x,同时配置环境变量 2、http://rpmfind.net/linux/rpm2html/search.ph 阅读全文
摘要:
1、常用定位方法 find_element_by_id()find_element_by_name()find_element_by_class_name()find_element_by_tag_name()find_element_by_link_text()find_element_by_pa 阅读全文
摘要:
sed命令 一、替换标记 s/pattern/replacement/flags 默认情况下只会替换每行的首次出现的内容,如果要替换其他位置需要使用flags 1、不使用flag 2、使用flags/pattern/replacement/flags 有4种可用的替换标记: 数字,表明新文本将替换第 阅读全文
摘要:
git 下载地址: http://npm.taobao.org/mirrors/git-for-windows/ 镜像地址 https://git-scm.com/download/win 官网地址 git commit 提交记录 git branch <branch_name> 建立名为branc 阅读全文