摘要: 创建测试计划,加载数据库驱动: 线程组: csv配置元件: 注:Filename用的是相对路径,csv文件要与jmeter脚本文件在同一目录 JDBC连接配置: jdbc请求: 用户定义的变量: http请求: BeanShell断言: 察看结果树: Debug Sampler起调试查看数据库返回结 阅读全文
posted @ 2017-10-09 19:08 xiongjiawei 阅读(581) 评论(0) 推荐(0) 编辑
摘要: 1 >>> if type(l)==type([]): 2 print("y") 3 4 5 y 6 >>> type(l)==type([]) 7 True 8 >>> type(l)==list 9 True 10 >>> isinstance(l,list) 11 True 12 >>> 阅读全文
posted @ 2017-10-09 17:43 xiongjiawei 阅读(265) 评论(0) 推荐(0) 编辑