关于watir selenium和webdriver soda cucumber

 
  • Ruby On Rails
  • Unit Test
watir和selenium在自动化测试web测试领域强硬增长。这一趋势日渐强势,各种搭配和框架丛生。

简单的搜集,我看到了cucumber配合watir的框架,看到例教,和类似的测试集成框架,也看到分布式测试框架


简单使用:

安装
Ruby代码 复制代码  收藏代码
  1. gem install watir-webdriver  

Ruby代码 复制代码  收藏代码
  1.   
  2. require 'watir-webdriver'  
  3. b = Watir::Browser.new  
  4. b.goto 'bit.ly/watir-webdriver-demo'  
  5. b.text_field(:id => 'entry_0').set 'your name'  
  6. b.select_list(:id => 'entry_1').select 'Ruby'  
  7. b.select_list(:id => 'entry_1').selected? 'Ruby'  
  8. b.div(:class => 'ss-form-entry').button.click   
  9. b.text.include? 'Thank you'  
  10. #webdriver通用watir语法   
  11. browser.goto('http://myserver/mypage')   
  12. # to enter text into a text field - assuming the field is named 'username'   
  13. browser.text_field(:name'username').set('Paul')   
  14. # if there was a text field that had an id of 'company_ID', you could set it to 'Ruby Co':   
  15. browser.text_field(:id ,'company_ID').set('Ruby Co')   
  16. # to click a button that has a caption of 'Cancel'   
  17. ie.button(:value'Cancel').click  


这一篇,夜猪希望开个头,加强关注这个领域,列一些资源,有机会的话更多学习和接触。
资源一部分:

书籍watirbook

watir-webdriver不同系统的安装简单应用

watir Podcast

watir Cheat sheet快速差语法用

watir不错的Tutorial

soda是用于测试nodejs的selenium client端

selenium的client是之前夜猪自己就一直在用和cucumber配合用的。

在测试的时候,很希望能停下来用firebug测debug一下,就会用到
capybara-firebug

Ruby代码 复制代码  收藏代码
  1. # located in features/support/capybara.rb or similar   
  2. require 'capybara/firebug'  
  3. Selenium::WebDriver::Firefox::Profile.firebug_version = '1.8.3'  
  4.   
  5. profile = Selenium::WebDriver::Firefox::Profile.new  
  6. profile.enable_firebug   
  7.   
  8. Capybara::Driver::Selenium.new(app,   
  9.    :browser => :remote,   
  10.    :url => "http://my.ip.add.ress:4444/wd/hub",   
  11.    :desired_capabilities => Selenium::WebDriver::Remote::Capabilities.firefox(:firefox_profile => profile))  

你可能感兴趣的:(关于watir selenium和webdriver soda cucumber)