lib/honeydew/device_matchers.rb in honeydew-0.12.0 vs lib/honeydew/device_matchers.rb in honeydew-0.14.0

- old
+ new

@@ -1,52 +1,59 @@ module Honeydew module DeviceMatchers - - def has_text?(text, timeout = Honeydew.config.timeout) - perform_action :action => 'is_text_present', :arguments => {:text => text}, :retry_until => timeout + def has_text?(text) + perform_assertion :is_text_present, :text => text end - def has_element_with_description?(description, timeout = Honeydew.config.timeout) - perform_action :action => 'is_text_present', :arguments => {:description => description}, :retry_until => timeout + def has_element_with_description?(description) + perform_assertion :is_text_present, :description => description end - def has_edit_text?(text, timeout = Honeydew.config.timeout) - perform_action :action => 'is_text_present', :arguments => {:text => text, :type => 'EditText'}, :retry_until => timeout + def has_edit_text?(text) + perform_assertion :is_text_present, :text => text, :type => 'EditText' end - def has_textview_text?(text, timeout = Honeydew.config.timeout) - perform_action :action => 'is_text_present', :arguments => {:text => text, :type => 'TextView'}, :retry_until => timeout + def has_textview_text?(text) + perform_assertion :is_text_present, :text => text, :type => 'TextView' end - def has_textview_with_text_and_description?(text, description, timeout=Honeydew.config.timeout) - perform_action :action => 'is_text_present', :arguments => {:text => text, :description => description, :type => 'TextView'}, :retry_until => timeout + def has_textview_with_text_and_description?(text, description) + perform_assertion :is_text_present, :text => text, :description => description, :type => 'TextView' end - def has_button?(button_text, timeout = Honeydew.config.timeout) - perform_action(:action => 'is_button_present', :arguments => {:text => button_text}, :retry_until => timeout) + def has_button?(button_text) + perform_assertion :is_button_present, :text => button_text end - def has_child_count?(parent_element_description, child_element_description, child_count, timeout = Honeydew.config.timeout) - perform_action(:action => 'is_child_count_equal_to', :arguments => {:parent_description => parent_element_description, :child_description => child_element_description, :child_count => child_count}, :retry_until => timeout) + def has_child_count?(parent_element_description, child_element_description, child_count) + perform_assertion :is_child_count_equal_to, + :parent_description => parent_element_description, + :child_description => child_element_description, + :child_count => child_count end - def has_element_with_nested_text?(parent_description, child_text, timeout = Honeydew.config.timeout) - perform_action(:action => 'is_element_with_nested_text_present', :arguments => {:parent_description => parent_description, :child_text => child_text}, :retry_until => timeout) + def has_element_with_nested_text?(parent_description, child_text) + perform_assertion :is_element_with_nested_text_present, + :parent_description => parent_description, + :child_text => child_text end def has_app_installed?(package_name) adb('shell pm list packages').include?(package_name) end def is_option_in_setting_enabled?(item_name, option_names) - perform_action :action => 'is_option_in_settings_menu_enabled', :arguments => {:menuName => item_name, :optionNames => option_names} + perform_assertion :is_option_in_settings_menu_enabled, + :menuName => item_name, :optionNames => option_names end def is_option_in_setting_disabled?(item_name, option_names) - perform_action :action => 'is_option_in_settings_menu_disabled', :arguments => {:menuName => item_name, :optionNames => option_names} + perform_assertion :is_option_in_settings_menu_disabled, + :menuName => item_name, :optionNames => option_names end - def has_settings_menu_item?(item_name, timeout = 10) - perform_action(:action => 'has_settings_menu_item', :arguments => {:menuName => item_name}, :retry_until => timeout) + def has_settings_menu_item?(item_name) + perform_assertion :has_settings_menu_item, + :menuName => item_name end end -end \ No newline at end of file +end