Watir自动化测试开始

同事ZK推荐使用Watir做自动化测试,感觉Watir和Ruby很灵活,上手很快,还不错,而且还是免费的。。。。

初学者通过网站学习,很快就可以写出来第一个test case of Google Test.

For beginner: http://wiki.openqa.org/display/WTR/Tutorial

 

经验总结下:

1. 关于安装: 

Step 1 - Install Ruby 

Step 2 - Install Watir 

Step 3 - Run the Watir Unit Tests (optional) 

Step 4 - Install the IE Developer Toolbar (recommended) 

 

Step2,安装Watir,在开始菜单->附件->命令提示符(或者直接在运行里面输入cmd) 

gem update --system 

gem install watir 

 

啰嗦一下,在安装Watir的过程中,居然出现Error提示.。

1) 在家安装时: Error: Connection time out. 

2)在公司的安装时:Error: Could not find gem watir locally or in a repository. 

 

处理方法一样:Watir都是远程setup或者update的,直接到网上(http://rubygems.org/)下载下来需要安装的gem包,执行如下: 

gem install C:\watir-1.6.5.gem

 

开始我的Google Search Test:

这个test case template写的很不错,尤其是注释写的很清楚,按照这个依葫芦画瓢去做适合自己的web test case还是很不错的。

网址:http://wiki.openqa.org/display/WTR/Google+Search

 

posted @ 2010-04-14 10:23  NikeyL  阅读(480)  评论(0编辑  收藏  举报