51Testing软件测试论坛

标题: Watir:抓取网页图片未成功 [打印本页]

作者: spring    时间: 2009-2-6 10:02
标题: Watir:抓取网页图片未成功
require 'watir'

browser = Watir::IE.new
browser.goto('http://twitter.com')

idx = 0

# using the images collection, iterate through all of the images on a page
browser.images.each do |x|
  idx += 1
  # apparently the string accepted by the string method will not allow variable substitution
  location = 'D:\file' + idx.to_s + '.jpg'
  puts location
  x.save(location)
end

如上代码执行后,停留在"保存图片"对话框.确认loacation的文件夹存在.
作者: michell168    时间: 2011-5-24 17:04
你好,我正在学习watir,我按照你这段代码所说的保存网页上图片,不管文件夹怎么设置,最后都会停在“保存图片”的对话框界面,而且存储的地址是图片收藏。请教下,你有遇到相同的情况么,该怎么解决?




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2