这一系列文章目的不是讲ruby,也不是讲selenium-webdriver,而是通过一个登录soso首页的小例子讲怎样一步一步写好自动化测试。目标是:面向对象编程,实现逻辑与数据分离。
如果你觉得已经学会了selenium-webdriver这个工具,而且也可以自己写一些小例子,但是似乎又是在云里雾里,不知道怎样写出来一个 成品,不确定应该用哪种开发框架,用什么测试框架。打个比方,好像你已经会去市场买菜、把菜切好,会用厨房的灶具打火、回锅、放油,但是是不知道应该 怎样把菜做好。这一系列文章的目的是写明怎样把“菜做好”
开篇前介绍一个学习ruby和selenium-webdriver的地址:http://17test.info/
ruby+selenium-webdriver学习视频教程:http://www.boobooke.com/goods-37.html
前期准备:
一.ruby
1.版本:1.92
2.下载地址:http://rubyinstaller.org/downloads/ (这个地址需要翻墙出去,或者去其他的地方下载)
3.安装:
双击安装包自动安装,安装过程中出来勾选项,全部勾选即可。
4.检查ruby安装情况:
命令行输入:
ruby -v
出现如下信息证明安装成功:
ruby 1.9.2p180 (2011-02-18) [i386-mingw32]
5.检查rubygem是否安装
命令行中输入:
gem -v
6.更新rubygem
命令行中输入:
gem update --system
7.命令行中再次输入:
gem -v
返回:1.8.24 说明已更新至新版本
二.DevKit
1.安装
双击下载的7z文件,指定解压路径,路径中不能有空格。如C:DevKit,这个路径是<DEVKIT_INSTALL_DIR>。
命令行中执行命令:
cd <DEVKIT_INSTALL_DIR>
ruby dk.rb init
ruby dk.rb install
(PS:这里有可能会提示
Please update your PATH to include build tools or download the DevKit from 'http://rubyinstaller.org/downloads' and follow the instructions at 'http://github.com/oneclick/rubyinstaller/wiki/Development-Kit'
可以尝试下手动编辑下config.yml文件,将ruby的安装目录加到config.yml文件中
config.yml文件只有执行ruby dk.rb init命令后才会生成)
2.验证是否安装成功
命令行中输入如下命令:
gem install rdiscount --platform=ruby
出现结果如下:
Fetching: rdiscount-1.6.8.gem ()
Temporarily enhancing PATH to include DevKit...
Building native extensions. This could take a while...
Successfully installed rdiscount-1.6.8
1 gem installed
Installing ri documentation for rdiscount-1.6.8...
Installing RDoc documentation for rdiscount-1.6.8...
三.selenium-webdriver
1.安装
命令行中输入命令:
gem install selenium-webdriver
2.验证是否安装成功
命令行中输入命令:
gem list selenium-webdriver
出现如下提示:
*** LOCAL GEMS ***
selenium-webdriver (2.21.0)
四.rspec
1.安装
命令行中输入如下命令:
gem install rspec