上一页 1 ··· 4 5 6 7 8 9 10 下一页
摘要: 查看结果树,可以看到测试通过,通过 的测试通常为绿色。红色则代表失败了。可以查看到取样器结果,请求,响应数据 取样器结果中可以查看到响应头,响应数据大小,响应时间等信息。 Thread Name: 线程组名称 Sample Start: 启动开始时间 Load time: 加载时长 Latency: 阅读全文
posted @ 2017-09-03 12:36 LLSix 阅读(3249) 评论(0) 推荐(0)
摘要: '定义变量 Dim arr1 '数组赋值 arr1 = array(3, 6, 8, 7, 1, 2, 9,10) For m = 0 To UBound(arr1) For i = m+1 To UBound(arr1) k=arr1(m) If arr1(m) < arr1(i) Then arr1(m) = arr1... 阅读全文
posted @ 2017-08-26 16:14 LLSix 阅读(350) 评论(0) 推荐(0)
摘要: 简单冒泡排序: 阅读全文
posted @ 2017-08-26 15:58 LLSix 阅读(140) 评论(0) 推荐(0)
摘要: 数组内容双位数排序: 数组内容不同位数升序: a.sort()方法 sort方法还有两个可选参数:key和reverse key在使用时必须提供一个排序过程中调用的方法 reverse实现同位数降序排序,需要提供一个布尔值: 阅读全文
posted @ 2017-08-26 15:57 LLSix 阅读(1032) 评论(0) 推荐(0)
摘要: Dim fso,f,a set oExcel = CreateObject( "Excel.Application" ) oExcel.Visible = false '4) 打开已存在的工作簿: oExcel.WorkBooks.Open( "F:\1.xlsx" ) On Error Resume Next '判断是否存在Sheet2工作表,不存在新建 If oExcel.Wor... 阅读全文
posted @ 2017-08-26 11:39 LLSix 阅读(685) 评论(0) 推荐(0)
摘要: Vbs查找Excel中Sheet2工作表是否存在,不存在创建个新工作表 阅读全文
posted @ 2017-08-24 16:26 LLSix 阅读(1153) 评论(0) 推荐(0)
摘要: VBS控制Excel的一些常见方法:(一)使用动态创建的方法 首先创建Excel对象,使用ComObj: oExcel=CreateObject("Excel.Application")1)显示当前窗口: oExcel.Visible=True2)更改Excel标题栏: oExcel.Caption="应用程序调用MicrosoftExcel"3)添加新工作簿: oExcel.WorkBooks... 阅读全文
posted @ 2017-08-24 13:40 LLSix 阅读(3189) 评论(0) 推荐(0)
摘要: set oExcel = CreateObject( "Excel.Application" ) '创建oExcel对象 oExcel.Visible = false '4) 打开已存在的工作簿: oExcel.WorkBooks.Open( "C:\Users\Desktop\123.xlsx" ) '5) 设置第1个工作表为活动工作表: oExcel.WorkSheets(1).Activ... 阅读全文
posted @ 2017-08-24 13:24 LLSix 阅读(257) 评论(0) 推荐(0)
摘要: vbs代码: test.txt内容 阅读全文
posted @ 2017-08-23 14:11 LLSix 阅读(2768) 评论(0) 推荐(0)
摘要: selenium 阅读全文
posted @ 2017-08-23 09:29 LLSix 阅读(4609) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 下一页