Sha256: 8f8f1aa68f75598afd0fa95094df821c3767aa6fd63c281fcdf273d992df964b
Contents?: true
Size: 827 Bytes
Versions: 15
Compression:
Stored size: 827 Bytes
Contents
require File.expand_path('../../watirspec_desktophelper', __FILE__) require File.expand_path('../shared/shared', __FILE__) describe 'QuickFind' do before(:all) do browser.open_dialog_with_action("New Preferences Dialog", "Show preferences", 4).should > 0 browser.quick_treeview(:name, "Advanced_treeview").quick_treeitem(:text, "Downloads").activate_tab_with_click end after(:all) do browser.close_all_dialogs end let(:widget) { browser.quick_find(:name, "Filetypes_quickfind") } subject { widget } it_behaves_like 'an editfield' it_behaves_like 'a widget' its(:type) { should == :quickfind } describe '#quick_find' do it 'constructs quickfind by its name' do browser.quick_find(:name, "Filetypes_quickfind").should exist end end end
Version data entries
15 entries across 15 versions & 1 rubygems