
测试管理
_qqmm
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
执行力
执行力: 1. 不知道做什么 2. 不知道怎么做 3. 开始做了,遇到问题不知道怎么解决 4. 不知道做好了有什么奖励 5. 不知道做不好有什么惩罚 把这几个问题想好了,项目的进度会加快的。原创 2013-03-11 18:39:39 · 495 阅读 · 0 评论 -
psftp dbq@host.com -pw i9%fdsafsafd11Qg4 ,密码存在百分号导致登录失败
psftp dbq@host.com -pw i9%fdsafsafd11Qg4 ,密码存在百分号导致登录失败 解决: 可以输入多个ba原创 2014-06-14 16:31:54 · 1540 阅读 · 0 评论 -
SVN SSH TortoiseSVN Remember Password
SIMPLE STEP FOR REMEMBER THE PASSWORD, FOLLOW US: STEP 1. SVN checkout address: svn+ssh://username@192.168.0.251//trunk/ STEP 2. Set SSH Client address with password D:\Program Files\Tortoi原创 2013-12-18 09:19:30 · 1167 阅读 · 0 评论 -
发一些乙醇原创的资料
发一些乙醇原创的资料,其他的大神一般不生产资料,他们只是乙醇的搬运工而已。 书籍类: webidriver实用指南:python版本真的来了!!!https://github.com/easonhan007/webdriver_guide/blob/master/README.md。webdriver实用指南,大家收藏一下,遇到问题翻一翻,当作工具书用。里面有完备的java转载 2013-11-20 20:21:28 · 3697 阅读 · 0 评论 -
Use Watir-WebDriver behind proxy
Good Ruby script #!/usr/bin/ruby def create_firefox_profile profile = Selenium::WebDriver::Firefox::Profile.new profile['network.proxy.ftp'] = "proxy.foo.com" profile['network.转载 2013-08-24 10:33:22 · 908 阅读 · 0 评论 -
ruby 读取yaml文件
ruby 读取yaml文件 假如我们有一个写好的yaml文件: program: id: 1 input: 1 2 output: 3 注意:":" 后面必须有一个空格 读取方式: require 'yaml' problem = YAML.load(File.open("a.yaml")) puts "problem id转载 2013-06-22 17:54:53 · 4287 阅读 · 0 评论 -
如何上传自己的project到github
http://artori.us/git-github-usage/ http://blog.youkuaiyun.com/chain2012/article/details/7476493原创 2013-06-08 23:11:39 · 1444 阅读 · 0 评论 -
testcase testsuite demo
http://www.51testing.com/html/09/n-830909.html原创 2013-06-14 16:38:20 · 549 阅读 · 0 评论 -
ruby retry
def hello i=1 begin puts "hello" a=10/0 rescue if(i<3) i+=1 retry end end end hello puts "end"原创 2013-04-20 17:36:01 · 745 阅读 · 0 评论 -
ruby 判断一个变量是否定义
irb(main):007:0> a = 1 => 1 irb(main):008:0> defined? a => "local-variable" irb(main):009:0> defined? b => nil irb(main):010:0> defined? nil => "nil" irb(main):011:0> defined? String => "constant" irb转载 2013-04-19 18:51:12 · 3396 阅读 · 0 评论 -
获取字符串中的数字,放入数组并对其求和
# 获取数字放入数组并对其求和 ver_no="Verification: 4 + 12 = ?“ sum = eval ver_no.scan(/\d+/).join("+")原创 2013-04-24 16:21:28 · 1099 阅读 · 0 评论 -
watir-webdriver cookie get value by name
不懂是不是自己没找到的问题, 还是watir-webdriver本来就没有根据cookie名称获取对应的cookie值的方法,后来没有办法,还是自己写了一个 require 'watir-webdriver' url = 'http://xxx.xxx.com' $b = Watir::Browser.new :chrome # 新建一个浏览器实例 $b.goto url def cookie原创 2013-06-26 16:09:54 · 1204 阅读 · 0 评论