Module: RWebSpec::RSpecHelper

Includes:
Assert, Core
Defined in:
lib/rwebspec-common/rspec_helper.rb

Constant Summary

Constants included from Core

Core::WORDS

Instance Method Summary collapse

Methods included from Assert

#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_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_in_page_source, #assert_text_not_in_page_source, #assert_text_not_present, #assert_text_not_present_in_table, #assert_text_present, #assert_text_present_in_table, #assert_title_equals, #assert_visible, #element_name, #element_value, #fail, #is_selenium_element?

Methods included from Core

#allow, #days_before, #days_from_now, #failsafe, #interpret_value, #on, #open_browser, #paragraphs, #random_boolean, #random_char, #random_digit, #random_number, #random_str, #random_string_in, #sentences, #shall_not_allow, #symbol_to_sequence, #today, #tomorrow, #try_for, #use_current_browser, #value_in_range, #words, #yesterday

Instance Method Details

#be_odd_numberObject

RSpec Matchers

Example,

a_number.should be_odd_number


90
91
92
# File 'lib/rwebspec-common/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-common/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-common/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-common/rspec_helper.rb', line 82

def debugging?
  ($TESTWISE_DEBUGGING && $TESTWISE_RUNNING_AS == "test_case")
end

#element_source(elem_id) ⇒ Object

TODO: is it working?



42
43
44
# File 'lib/rwebspec-common/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-common/rspec_helper.rb', line 36

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


56
57
58
# File 'lib/rwebspec-common/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-common/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-common/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-common/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-common/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