摘要:
安装.net framework 4.5.2 https://www.microsoft.com/zh-CN/download/details.aspx?id=42641 安装C编译器 python2.7 https://www.microsoft.com/en-us/download/detail 阅读全文
摘要:
Capabilities are options that you can use to customize and configure a ChromeDriver session. This page documents all ChromeDriver supported capabiliti 阅读全文
摘要:
There are lots of command lines which can be used with the Google Chrome browser. Some change behavior of features, others are for debugging or experi 阅读全文
摘要:
ORDER BY _column1, _column2; /* _column1升序,_column2升序 */ ORDER BY _column1, _column2 DESC; /* _column1升序,_column2降序 */ ORDER BY _column1 DESC, _column 阅读全文
摘要:
解压apache-jmeter-3.0.zip文件至c盘,本文解压至C:\jmeter3目录下。 桌面上选择“我的电脑”(右键),高级, 环境变量, 在“系统变量” >“新建”, 在变量名中输入:JMETER_HOME,变量值中输入:C:\jmeter3。再修改CLASSPATH变量,变量值中添加 阅读全文
摘要:
享内存的方式原理就是将一份物理内存映射到不同进程各自的虚拟地址空间上,这样每个进程都可以读取同一份数据,从而实现进程通信。因为是通过内存操作实现通信,因此是一种最高效的数据交换方法。 共享内存在 Windows 中是用 FileMapping 实现的,从具体的实现方法上看主要通过以下几步来实现: 1 阅读全文
摘要:
环境:Loadrunner版本:8.0自建一个test.html文件:<html><head><meta name="google1" content="google2"/><title>google3</title></head><body>google4:<input type="text" n 阅读全文
摘要:
最近使用loadrunner中需要录制文件的上传和下载,上传功能模块利用录制可以直接实现,下载无法实现,在网上找到了一段代码,自己动手试验了下,发现没有用 辛苦找到的,还是记录下吧 (1)LoadRunner上传文件 web_submit_data("importStudent.do", "Acti 阅读全文
摘要:
一、LR中参数的使用 LR中参数默认使用“{}”来表示,如果想要修改,可以再General Options/Parameterization设置参数的边界字符 经常用到的函数: lr_save_string("字符串",参数名),把字符串保存为参数 void lr_save_datetime(con 阅读全文
摘要:
有些时候需要在某个字符串的前面用0补齐,以便满足长度的格式要求。 在LoadRunner中可以封装出一个函数来处理这种问题: /* Function to pad a string to x characters adding the required character at the start 阅读全文