你如何使用watir-webdriver打开一个zip文件?

时间:2016-01-07 18:10:52

标签: ruby selenium testing cucumber watir-webdriver

我的测试套件有一个带有红宝石后端的黄瓜前端,在最新版本的OSX上运行最新版本的watir-webdriver及其依赖项。我的黄瓜环境设置为在Firefox中执行。

我们的应用程序的导出功能创建了一个zip文件但是为了测试导入功能,我需要zip文件的内容。

我的实际测试需要解压缩该zip文件并选择其中的单个文件,以用于测试我们的Web应用程序的导入功能。

有人能指点我参考,可以帮我弄清楚怎么写吗?

2 个答案:

答案 0 :(得分:1)

根据我的经验,您可以像普通用户一样下载此文件。首先,您只需单击下载按钮或其他任何内容,然后可以访问文件的任何位置并查看其内容。

假设默认情况下下载只是转到“下载”文件夹,您可以使用一些简单的代码来选择最近下载的项目:

fn = Dir.glob("~/Downloads/*.zip").max { |a,b| File.ctime(a) <=> File.ctime(b)}

然后只需使用unzip shell命令解压缩文件。当你可以使用通用shell命令时,没有理由在混合中添加另一个gem。

`unzip #{fn}`

然后,您再次使用Dir.glob获取解压缩文件文件夹中所有内容的文件名。假设文件名为&#34; thing.zip&#34;,则执行以下操作:

files = Dir.glob("~/Downloads/thing/*")

如果您想将文件直接下载到项目文件夹,可以试试这个。这也可以防止弹出窗口询问您是否确实要保存方便的文件。我认为这仍然有效,但有一段时间没有使用它。上面的东西确实可行。

profile = Selenium::WebDriver::Firefox::Profile.new    
download_dir = Dir.pwd + "/test_downloads"
profile['browser.download.dir'] = download_dir
profile['browser.helperApps.neverAsk.saveToDisk'] = "application/zip"
b = Watir::Browser.new. :firefox, :profile => profile

答案 1 :(得分:0)

我最后在https://github.com/rubyzip/rubyzip添加了rubyzip gem 解决方案是在那个链接,但我修改了我的一点点。我在common.rb文件中添加了以下内容。见下文:

require 'Zip'

  def unpack_zip

  test_home='/Users/yournamegoeshere/SRC/watir_testing/project files'

  sleep(5) #<--manually making time to hit the save download dialog

  zip_file_paths = []
  Find.find(test_home) do |path|
    zip_file_paths << path if path =~ /.*\.zip$/
  end

  file_name=zip_file_paths[0]

  Zip::File.open(file_name) do |zip_file|

    # Handle entries one by one
    zip_file.each do |entry|

      # Extract to file/directory/symlink
      puts "Extracting #{entry.name}"
      entry.extract(test_home + "/" + entry.name)

      # Read into memory
      content = entry.get_input_stream.read
    end

    # Find specific entry
    entry = zip_file.glob('*.csv').first
    puts entry.get_input_stream.read
  end
end

此解决方案效果很好!