Sha256: eab7b587f74fcb9b86cfb63ae122d3a00f782e9ee36dd7631be32765cca804cf

Contents?: true

Size: 925 Bytes

Versions: 5

Compression:

Stored size: 925 Bytes

Contents

#  This module includes checkers which are run on every page load
# 
#  In order to use this module, add a require to one of your test scripts: 
#  require 'watir-classic/contrib/page_checker'
#  To add checkers, call the ie.add_checker method
#
#  ie.add_checker(PageCheckers::NAVIGATION_CHECKER)
#
#  Checkers are Ruby proc objects which are called within Watir::IE and passed 
#  the current instance of ie. 

module PageCheckers        

	# This checker iterates through  the current document including any frames
	# and checks for http errors, 404, 500 etc
	NAVIGATION_CHECKER = lambda do |ie|
		if ie.document.frames.length > 1
			1.upto ie.document.frames.length do |i|
				begin
					ie.frame(:index, i).check_for_http_error
				rescue Watir::Exception::UnknownFrameException
					# frame can be already destroyed
				end          
			end
		else
			ie.check_for_http_error
		end
	end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
watir-classic-3.3.0 lib/watir-classic/contrib/page_checker.rb
watir-classic-3.2.0 lib/watir-classic/contrib/page_checker.rb
watir-classic-3.2.0.rc1 lib/watir-classic/contrib/page_checker.rb
watir-classic-3.1.0 lib/watir-classic/contrib/page_checker.rb
watir-classic-3.0.0 lib/watir-classic/contrib/page_checker.rb