Sha256: 5f74e91d278fab99531e28baed7e624b86002daa9ea62f111dd8731d9f4285b4

Contents?: true

Size: 340 Bytes

Versions: 3

Compression:

Stored size: 340 Bytes

Contents

module Watir
  class IFrame < HTMLElement
    #
    # Uses Nokogiri to return the text of iframe body.
    #
    # @return [String]
    #

    def text!
      body.text!
    end
  end

  class FramedDriver
    alias watir_switch! switch!
    def switch!
      @browser.doc = nil
      watir_switch!
    end
  end # FramedDriver
end # Watir

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
watigiri-0.6.3 lib/extensions/watir/iframe.rb
watigiri-0.6.2 lib/extensions/watir/iframe.rb
watigiri-0.6.1 lib/extensions/watir/iframe.rb