Sha256: 82e2a08e4a74ba06843d9da87daa126e3ce69e41c69b68be97bce2e3dd61357c

Contents?: true

Size: 316 Bytes

Versions: 1

Compression:

Stored size: 316 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

    private

    def switch!
      @browser.doc = nil
      super
    end

  end # FramedDriver

end # Watir

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
watigiri-0.1.0 lib/extensions/watir/iframe.rb