dpdpdp 发表于 2008-10-27 21:07:57

Watir截屏功能的实现

Step1.下载并安装Rmagick
Step2.下载并安装win32screenshot
Step3.编辑Win32Screenshot.rb
      1. module Win32   
      改为 module Win32Screenshot
      2.找到     USER32 = DL.dlopen("user32")
    EnumWindows = USER32['EnumWindows', 'IPL']
    GetWindowTextLength = USER32['GetWindowTextLengthA' ,'LI' ]
    GetWindowText = USER32['GetWindowTextA', 'iLsL' ]
      下面加入     ShowWindow= USER32['ShowWindow', 'LIL' ]
    BringWindowToTop=USER32['BringWindowToTop','LI']
       3.找到     SRCCOPY = 0xCC0020
    GMEM_FIXED = 0
    DIB_RGB_COLORS = 0
      下面加入     SW_SHOWMAXIMIZED = 3
       4.找到     def capture_hwnd(hwnd)
      hScreenDC = getDC(hwnd)
         两行之间插入       ShowWindow.call(hwnd,SW_SHOWMAXIMIZED)
      setForegroundWindow(hwnd)
      BringWindowToTop.call(hwnd)
Step4.编辑Watir.rb
       1.文件开头加入 require 'win32screenshot'
require 'rubygems'
require 'RMagick'
       2.Class IE中加入方法     def captureGif(file)
      
      width, height, bmp =Win32Screenshot::Screenshot.capture_hwnd(@ie.hwnd)
      img = Magick::Image.from_blob(bmp)
      png = img.to_blob do
      self.format = 'gif'
    end
    File.open(file, "wb") {|io| io.write(png)} unless file.nil?
    end
Step5.over用下面的代码试一下效果
   require 'watir'   # the watir controller
   # open the IE browser
   ie = Watir::IE.new
   ie.maximize
   # Step 1: go to the test site: http://www.google.com
   ie.goto("http://www.google.com")
   ie.captureGif('c:/google1.gif')
   # Step 2: enter 'pickaxe' in the search text field
   ie.text_field(:name, "q").set("什么")       # q is the name of the search field
   ie.captureGif('c:/google2.gif')
   # Step 3: click the 'Google Search' button
   ie.button(:name, "btnG").click               # "btnG" is the name of the Search button
   ie.captureGif('c:/google3.gif')
   # Actual Result: Check that the 'Programming Ruby' link appears on the results page
   ifie.contains_text("什么是-什么是什么,搜搜就知道!")
      puts "Test Passed. Found the test string: '什么是-什么是什么,搜搜就知道!'. Actual Results match Expected Results."
   else
      puts "Test Failed! Could not find: '什么是-什么是什么,搜搜就知道!'"
   end
   # End of test: Google search

[ 本帖最后由 dpdpdp 于 2008-10-27 21:12 编辑 ]

tracy-fmsi 发表于 2008-11-6 14:24:30

顶了
楼主在用这个工具吗?

dpdpdp 发表于 2008-11-7 16:34:16

刚刚学而已

low1210 发表于 2008-11-13 10:14:32

顶了!

楼主好厉害啊!   期待对watir进一步的了解,另:楼主窗体截图的那个研究出来了吗?

看雪时节 发表于 2008-11-14 19:52:30

回复 1# 的帖子

楼主厉害,我也在用Ruby,不知楼主是否测试Flex?有没有Ruby这方面的经验给我共享一下!~~
http://bbs.51testing.com/viewthread.php?tid=132505&page=1&extra=page%3D1
请见我在这个帖子里的提问,如果大家可以帮我解决这个问题,那我对你的崇拜简直就是如滔滔黄河水,连绵不绝啊!~~
先谢谢各位!~~

[ 本帖最后由 看雪时节 于 2008-11-14 19:54 编辑 ]

dpdpdp 发表于 2008-11-17 16:55:17

回复 4# 的帖子

这段代码就是对ie的窗体截图,因为比较仓促,所以代码有些乱,这段时间也没有整理

dpdpdp 发表于 2008-11-17 16:58:21

回复 5# 的帖子

刚刚接触而已,有待深入研究
页: [1]
查看完整版本: Watir截屏功能的实现