摘要: selenium自动化时,会启动chromedriver.exe,每次运行一次,就多启动一个,执行多次就会拖慢系统。如下批处理命令,可以批量杀掉进程 tasklist |find "chromedriver">nul && taskkill /f /t /im chromedriver.exetas 阅读全文
posted @ 2016-10-26 20:24 testway 阅读(340) 评论(0) 推荐(0)
摘要: tool - 支持TestLink 1.93,将excel格式用例转化成可以导入的xml格式 https://github.com/zhangzheyuk/CaseConvert https://github.com/zhangzheyuk/CaseConvert 阅读全文
posted @ 2016-10-24 17:56 testway 阅读(1159) 评论(0) 推荐(0)
摘要: TestLink1.9.3测试用例:Excel转换XML工具<二>实现代码 http://blog.csdn.net/candle806/article/details/7490599 以下是通过VBScript实现的Excel数据转换成XML格式,主要用于实现Testlink1.9.3的测试用例导 阅读全文
posted @ 2016-10-24 17:53 testway 阅读(1777) 评论(0) 推荐(0)
摘要: http://blog.csdn.net/candle806/article/details/7441695最近在整理测试用例,所以想找一个合适的工具来完成对测试需求、测试用例的管理。对比了一翻,发现开源工具中扩展比较好的还属TestLink,而且还可以与JIRA进行对接,这样就引起了我更大的兴趣。 阅读全文
posted @ 2016-10-24 17:42 testway 阅读(11317) 评论(0) 推荐(0)
摘要: testlink 下载地址 https://sourceforge.net/projects/testlink/files/TestLink%201.9/ 阅读全文
posted @ 2016-10-20 20:01 testway 阅读(1212) 评论(0) 推荐(0)
摘要: TestNG的DTD检查文件:http://testng.org/testng-1.0.dtd.php 更多testng配置及说明,请移步http://testdoc.org/docmaster?pid=111 testng.xml文件结构: testng.xml文件节点属性说明: suite属性说 阅读全文
posted @ 2016-10-20 19:56 testway 阅读(1407) 评论(0) 推荐(0)
摘要: 1、使用Eclipse新建一个Java工程,名字任意 2、将“%LoadRunner_Home%\classes\lrapi”目录拷贝到工程中 3、将工程导出为Jar包,譬如:命名为lrapi.jar 4、再新建Java工程时,将lrapi.jar引入扩展库中 5、"import lrapi.lr; 阅读全文
posted @ 2016-10-20 16:39 testway 阅读(671) 评论(0) 推荐(0)
摘要: loadrunner 运行从eclipse中做好的脚本,ctrl + A 复制到loadrunner中来, 添加参数化的的语句:verifyCode = lr.eval_string ("<rand6>"); 报错: Notify: Found jdk version: 1.6.0. [MsgId: 阅读全文
posted @ 2016-10-17 21:29 testway 阅读(2766) 评论(0) 推荐(0)
摘要: 完善下 获取当前日期赋值给变量:startime="`date +%Y-%m-%d` 09:00", 这条命令中“=”号左右不能有空格,不然这条命令无法执行 阅读全文
posted @ 2016-10-09 21:29 testway 阅读(1465) 评论(0) 推荐(0)
摘要: /** * Copyright (c) 2008, http://www.snakeyaml.org * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You ma... 阅读全文
posted @ 2016-09-06 21:36 testway 阅读(609) 评论(0) 推荐(0)