Module: RWebSpec::RSpecHelper

Includes:
Assert, Driver, Utils
Defined in:
lib/rwebspec/rspec_helper.rb

Constant Summary

Constants included from Utils

Utils::WORDS

Instance Method Summary collapse

Methods included from Assert

#assert_button_not_present, #assert_button_not_present_with_text, #assert_button_present, #assert_button_present_with_text, #assert_checkbox_not_selected, #assert_checkbox_selected, #assert_equals, #assert_exists, #assert_hidden, #assert_link_not_present_with_exact, #assert_link_not_present_with_text, #assert_link_present_with_exact, #assert_link_present_with_text, #assert_nil, #assert_not, #assert_not_exists, #assert_not_nil, #assert_option_equals, #assert_option_not_present, #assert_option_present, #assert_option_value_equals, #assert_option_value_not_present, #assert_option_value_present, #assert_radio_option_not_present, #assert_radio_option_not_selected, #assert_radio_option_present, #assert_radio_option_selected, #assert_text_field_value, #assert_text_in_element, #assert_text_not_present, #assert_text_not_present_in_table, #assert_text_present, #assert_text_present_in_table, #assert_title_equals, #assert_visible, #fail

Methods included from Utils

#days_before, #days_from_now, #interpret_value, #paragraphs, #random_boolean, #random_char, #random_digit, #random_number, #random_str, #random_string_in, #sentences, #today, #tomorrow, #value_in_range, #words, #yesterday

Methods included from Driver

#absolutify_url, #absolutize_page, #absolutize_page_hpricot, #ajax_wait_for_element, #allow, #attach_browser, #begin_at, #browser, #cell_with_id, #click_button_with_image_src_contains, #close_all_browsers, #close_browser, #contains_text, #context, #dump_response, #element_by_id, #ends_with?, #enter_text_with_id, #expect_page, #failsafe, #firefox, #goto_page, #goto_url, #ie, #is_firefox?, #is_linux?, #is_mac?, #is_windows?, #label_with_id, #new_popup_window, #on, #open_browser, #page_source, #page_text, #page_title, #repeat_try, #save_current_page, #shall_not_allow, #span_with_id, #substitute_relative_path_in_src_line, #support_utf8, #symbol_to_sequence, #try, #use_current_browser, #wait_for_element, #wait_until

Methods included from Popup

#check_for_popups, #check_for_security_alerts, #click_button_in_javascript_popup, #click_button_in_popup_after, #click_button_in_security_alert_popup, #click_button_in_security_information_popup, #click_popup_window, #ie_popup_clicker, #prepare_to_click_button_in_popup, #start_checking_js_dialog, #verify_alert

Methods included from ITestPlugin

#connect_to_itest, #debug, #dump_caller_stack, #operation_delay

Instance Method Details

#be_odd_numberObject

RSpec Matchers

Example,

a_number.should be_odd_number


90
91
92
# File 'lib/rwebspec/rspec_helper.rb', line 90

def be_odd_number
  simple_matcher("must be odd number") { |actual| actual && actual.to_id % 2 == 1}
end

#button_by_id(button_id) ⇒ Object



47
48
49
# File 'lib/rwebspec/rspec_helper.rb', line 47

def button_by_id(button_id)
  button(:id, button_id)
end

#buttons_by_caption(text) ⇒ Object Also known as: buttons_by_text



51
52
53
# File 'lib/rwebspec/rspec_helper.rb', line 51

def buttons_by_caption(text)
  button(:text, text)
end

#debugging?Boolean

When running

Returns:

  • (Boolean)


82
83
84
# File 'lib/rwebspec/rspec_helper.rb', line 82

def debugging?
  $ITEST2_DEBUGGING && $ITEST2_RUNNING_AS == "test_case"
end

#element_source(elem_id) ⇒ Object

TODO: is it working?



42
43
44
# File 'lib/rwebspec/rspec_helper.rb', line 42

def element_source(elem_id)
  @web_browser.get_html_in_element(elem_id)
end

#element_text(elem_id) ⇒ Object Also known as: element_text_by_id



36
37
38
# File 'lib/rwebspec/rspec_helper.rb', line 36

def element_text(elem_id)
  @web_browser.element_value(elem_id)
end


56
57
58
# File 'lib/rwebspec/rspec_helper.rb', line 56

def link_by_id(link_id)
  link(:id, link_id)
end

default options: exact => true



61
62
63
64
65
66
67
68
# File 'lib/rwebspec/rspec_helper.rb', line 61

def links_by_text(link_text, options = {})
  options.merge!({:exact=> true})
  matching_links = []
  links.each { |link|
    matching_links << link if (options[:exact] ? link.text == link_text :  link.text.include?(link_text))
  }
  return matching_links
end

#save_content_to_file(content, file_name = nil) ⇒ Object



75
76
77
78
79
# File 'lib/rwebspec/rspec_helper.rb', line 75

def save_content_to_file(content, file_name = nil)
  file_name ||= Time.now.strftime("%Y%m%d%H%M%S") + ".html"
  puts "about to save page: #{File.expand_path(file_name)}"
  File.open(file_name, "w").puts content
end

#save_page(file_name = nil) ⇒ Object



71
72
73
# File 'lib/rwebspec/rspec_helper.rb', line 71

def save_page(file_name = nil)
  @web_browser.save_page(file_name)
end

#table_source(table_id) ⇒ Object Also known as: table_source_by_id

Content



28
29
30
31
32
33
# File 'lib/rwebspec/rspec_helper.rb', line 28

def table_source(table_id)
  table(:id, table_id).innerHTML
  # elem = @web_browser.document.getElementById(table_id)
  # raise "The element '#{table_id}' is not a table or there are multple elements with same id" unless elem.name.uppercase == "TABLE"
  # elem.innerHTML
end