Sha256: 8e84b8a16401ef9cd12880f53e0c33b3365a4934118476648494adc87e341ac6
Contents?: true
Size: 440 Bytes
Versions: 1
Compression:
Stored size: 440 Bytes
Contents
$LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..', '..') unless $SETUP_LOADED require 'unittests/setup' class TC_CloseAllWindows < Watir::TestCase def xsetup @browsers = [] 5.times {@browsers << Watir::Browser.new} end def xtest_close_all_windows assert @browsers.all? {|browser| browser.exists?} Watir::IE.close_all assert @browsers.all? {|browser| not browser.exists?} end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
watir-1.8.0.rc1 | unittests/close_all_test.rb |