2

如何使用 watir-webdriver 保存页面及其所有内容? browser.html只保存浏览器的元素。如果我打开我转储的文件,browser.html则没有样式。

也不browser.html保存 iframe。我可以遍历 iframe 并单独保存它们,但它们将与主页分开。

我现在只记录 html,也许以后我会保存截图,因为没有简单的方法来转储整个页面及其 css 和图像。

require 'fileutils'
class Recorder

  attr_reader :request, :counter, :browser

  # request should contain w(login_id start_time)
  def initialize(request)
    @request, @counter = request, 1
    # Settings class contains my configs (enable recording, paths, etc.)
    FileUtils.mkpath(path) if Settings.recorder.record and !File.exists?(path)
  end

  def record(hash)
    return unless Settings.recorder.record
    @browser = hash["browser"]
    record_html(hash)
    record_frames(hash)
    @counter += 1
  end

private

  # hash should contain (method_name browser)
  def record_html(hash)
    File.open("#{path}#{generate_file_name(hash)}", "w") do |file|
      file.write("<!--#{browser.url}-->\n")
      file.write(browser.html)
    end
  end

  def record_frames(hash)
    browser.frames.each_with_index do |frame, index|
      File.open("#{path}#{generate_file_name(hash, index + 1)}", "w") do |file|
        file.write("<!--#{browser.url}-->\n")
        file.write(frame.html)
      end
    end
  end

  def path
    "#{Settings.recorder.path}/#{request["login_id"]}/#{request["start_time"]}/"
  end

  def generate_file_name(hash, frame=nil)
    return "#{counter}-#{hash["method_name"]}.html" if frame.nil?
    "#{counter}-frame#{frame}-#{hash["method_name"]}.html"
  end
end
4

1 回答 1

-1

我不了解 Watir,但对于那些可能想要使用 Selenium WebDriver(Watir 包装)保存页面(包括直接在页面中的 CSS 和 JavaScript)的人来说,最简单的方法是使用page_source 方法( WebDriver 类)。顾名思义,它提供了如此完整的来源。然后只需保存到一个新文件,如下所示:

driver = Selenium::WebDriver.for(:firefox)
driver.get(URL_of_page_to_save)
file = File.new(filename, "w")
file.puts(driver.page_source)
file.close

但它不会将 JavaScript 或 CSS 保存在其他文件中。

于 2014-02-26T16:08:59.687 回答