以后学习一下Ruby,再了解一下其自动化测试框架Watir
Watir用户手册: http://wiki.openqa.org/display/WTR/Tutorial
Watir 主页:http://wtr.rubyforge.org/
Ruby中文手册:http://www.ruby-cn.org/doc.html
Ruby主页:http://ruby-lang.org/en/
Watir安装方法:联网
1. Download and Install ruby186-27_rc1.exe
2. Launch RubyGems Package Manager
3. Input command:
gem update --system #in order to update RubyGems
gem install watir #install watir from network
4. Test result of watir installation
4.1 Start SciTE
4.2 Simple codes
#------------------------------------
require "watir"
test_site="http://www.google.com"
ie=Watir::IE.new
ie.goto test_site
#------------------------------------
4.3 Expected result: Open IE, and direct to google.com
微信扫一扫交流
作者:CoderZh
公众号:hacker-thinking (一个程序员的思考)
独立博客:http://blog.coderzh.com
博客园博客将不再更新,请关注我的「微信公众号」或「独立博客」。
作为一个程序员,思考程序的每一行代码,思考生活的每一个细节,思考人生的每一种可能。
文章版权归本人所有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。