module Awetestlib
module Regression
module UserInput
# @!group Core
# Click a specific DOM element identified by one of its attributes and that attribute's value.
#
# @example
# # html for a link element:
# # Pickaxe
#
# click(browser, :link, :text, 'Pickaxe')
#
# @param [Watir::Browser] browser A reference to the browser window or container element to be tested.
# @param [Symbol] element The kind of element to click. Must be one of the elements recognized by Watir.
# Some common values are :link, :button, :image, :div, :span.
# @param [Symbol] how The element attribute used to identify the specific element.
# Valid values depend on the kind of element.
# Common values: :text, :id, :title, :name, :class, :href (:link only)
# @param [String|Regexp] what A string or a regular expression to be found in the *how* attribute that uniquely identifies the element.
# @param [String] desc Contains a message or description intended to appear in the log and/or report output
#
def click(browser, element, how, what, desc = '')
#debug_to_log("#{__method__}: #{element}, #{how}, #{what}")
msg = build_message("Click #{element} :#{how}=>'#{what}'", desc)
msg1 = "#{element}(#{how}, '#{what}')"
begin
case element
when :link
browser.link(how, what).click
when :button
browser.button(how, what).click
when :image
browser.image(how, what).click
when :radio
case how
when :index
set_radio_by_index(browser, what, desc)
else
browser.radio(how, what).set
end
when :span
browser.span(how, what).click
when :div
browser.div(how, what).click
when :cell
browser.cell(how, what).click
else
browser.element(how, what).click
end
end
if validate(browser, @myName, __LINE__)
passed_to_log(msg)
true
end
rescue
failed_to_log("Unable to #{msg}. '#{$!}'")
end
# @!endgroup Core
# @!group Click
# Click a button element identified by the value of its _id_ attribute. A button is an HTML element with tag 'input' and type 'submit' or 'button'.
# @param [Watir::Browser, Watir::Container] browser A reference to the browser window or container element to be tested.
# @param [String|Regexp] what A string or a regular expression to be found in the specified attribute that uniquely identifies the element.
# @param [String] desc Contains a message or description intended to appear in the log and/or report output
#
def click_button_by_id(browser, what, desc = '')
click(browser, :button, :id, what, desc)
end
# Click a button element identified by the value of its index within the container referred to by +browser+.
# @param [Watir::Browser, Watir::Container] browser A reference to the browser window or container element to be tested.
# @param [Fixnum] what An integer that indicates the index of the element within the container.
# @param [String] desc Contains a message or description intended to appear in the log and/or report output
def click_link_by_index(browser, what, desc = '')
click(browser, :link, :index, what, desc)
end
# Click a link element identified by the value of its _href_ attribute. Take care to escape characters in the url that are reserved by Regexp.
# @param (see #click_button_by_id)
def click_link_by_href(browser, what, desc = '')
click(browser, :link, :href, what, desc)
end
alias click_href click_link_by_href
# Click a link element identified by the value of its _href_ attribute and do not wait for the browser to reach ready state.
# Take care to escape characters in the url that are reserved by Regexp.
# @param (see #click_button_by_id)
def click_link_no_wait_by_href(browser, what, desc = '')
click_no_wait(browser, :link, :href, what, desc)
end
# Click a button element identified by the value of its index within the container referred to by +browser+.
# @param (see #click_link_by_index)
def click_button_by_index(browser, what, desc = '')
click(browser, :button, :index, what, desc)
end
# Click a button element identified by the value of its _name_ attribute. A button is an HTML element with tag 'input' and type 'submit' or 'button'.
# @param (see #click_button_by_id)
def click_button_by_name(browser, what, desc = '')
click(browser, :button, :name, what, desc)
end
# Click a button element identified by the value of its _text_ attribute. A button is an HTML element with tag 'input' and type 'submit' or 'button'.
# @param (see #click_button_by_id)
def click_button_by_text(browser, what, desc = '')
click(browser, :button, :text, what, desc)
end
# Click a button element identified by the value of its _class_ attribute. A button is an HTML element with tag 'input' and type 'submit' or 'button'.
# @param (see #click_button_by_id)
def click_button_by_class(browser, what, desc = '')
click(browser, :button, :class, what, desc)
end
# Click a button element identified by the value of its _value_ attribute. A button is an HTML element with tag 'input' and type 'submit' or 'button'.
# @param (see #click_button_by_id)
def click_button_by_value(browser, what, desc = '')
click(browser, :button, :value, what, desc)
end
# Click a button element identified by the value of its _title_ attribute. A button is an HTML element with tag 'input' and type 'submit' or 'button'.
# @param (see #click_button_by_id)
def click_button_by_title(browser, what, desc = '')
click(browser, :button, :title, what, desc)
end
# Click a link element identified by the value of its _id_ attribute.
# @param (see #click_button_by_id)
def click_link_by_id(browser, what, desc = '')
click(browser, :link, :id, what, desc)
end
alias click_id click_link_by_id
# Click a link element identified by the value of its _name_ attribute.
# @param (see #click_button_by_id)
def click_link_by_name(browser, what, desc = '')
click(browser, :link, :name, what, desc)
end
alias click_name click_link_by_name
# Click a file_field element identified by the value of its _id_ attribute.
# @param (see #click_button_by_id)
def click_file_field_by_id(browser, what, desc = '')
click(browser, :file_field, :id, what, desc)
end
# Click an image element identified by the value of its _id_ attribute.
# @param (see #click_button_by_id)
def click_img_by_alt(browser, what, desc = '')
click(browser, :image, :alt, what, desc)
end
# Click an image element identified by the value of its _title_ attribute.
# @param (see #click_button_by_id)
def click_img_by_title(browser, what, desc = '')
click(browser, :image, :title, what, desc)
end
# Click an image element identified by the value of its _src_ attribute.
# Take care to escape characters in the source url that are reserved by Regexp.
# @param (see #click_button_by_id)
def click_img_by_src(browser, what, desc = '')
click(browser, :image, :src, what, desc)
end
# Click a link element identified by the value of its _value_ attribute.
# @param (see #click_button_by_id)
def click_link_by_value(browser, what, desc = '')
click(browser, :link, :value, what, desc)
end
# Click a link element identified by the value in its text (innerHTML).
# @param (see #click_button_by_id)
def click_link_by_text(browser, what, desc = '')
click(browser, :link, :text, what, desc)
end
alias click_link click_link_by_text
alias click_text click_link_by_text
alias click_js_button click_link_by_text
# Click a link element identified by the value of its _class_ attribute.
# @param (see #click_button_by_id)
def click_link_by_class(browser, what, desc = '')
click(browser, :link, :class, what, desc)
end
alias click_class click_link_by_class
# Click a span element identified by the value in its text (innerHTML).
# @param (see #click_button_by_id)
def click_span_by_text(browser, what, desc = '')
click(browser, :span, :text, what)
end
alias click_span_with_text click_span_by_text
# Click a link element identified by the value of its _title_ attribute.
# @param (see #click_button_by_id)
def click_link_by_title(browser, what, desc = '')
click(browser, :link, :title, what, desc)
end
alias click_title click_link_by_title
# @!endgroup Click
# @!group Core
# Click a specific DOM element by one of its attributes and that attribute's value and
# do not wait for the browser to finish reloading. Used when a modal popup or alert is expected. Allows the script
# to keep running so the popup can be handled.
#
# @example
# # html for a link element:
# # Pickaxe
#
# click_no_wait(browser, :link, :text, 'Pickaxe')
#
# @see #click
#
# @param (see #click)
#
def click_no_wait(browser, element, how, what, desc = '')
debug_to_log("#{__method__}: #{element}, #{how}, #{what}")
msg = build_message("Click no wait #{element} :#{how}=>'#{what}'", desc)
msg1 = "#{element}(#{how}, '#{what}'"
begin
case element
when :link
browser.link(how, what).click_no_wait
when :button
browser.button(how, what).click_no_wait
when :image
browser.image(how, what).click_no_wait
when :radio
case how
when :index
set_radio_no_wait_by_index(browser, what, desc)
else
browser.radio(how, what).click_no_wait
end
when :span
browser.span(how, what).click_no_wait
when :div
browser.div(how, what).click_no_wait
when :checkbox
browser.checkbox(how, what).click_no_wait
when :cell
browser.cell(how, what).click_no_wait
else
browser.element(how, what).click_no_wait
end
rescue => e
if not rescue_me(e, __method__, "browser(#{msg1}').click_no_wait", "#{browser.class}")
raise e
end
end
if validate(browser, @myName, __LINE__)
passed_to_log(msg)
true
end
rescue
failed_to_log("Unable to #{msg} '#{$!}'")
sleep_for(1)
end
# @!endgroup Core
alias click_href_no_wait click_link_no_wait_by_href
# @!group Click No Wait
# Click a button element identified by the value of its _id_ attribute
# and do not wait for the browser to reach ready state.
# @param (see #click_button_by_id)
def click_button_no_wait_by_id(browser, what, desc = '')
click_no_wait(browser, :button, :id, what, desc)
end
alias click_button_by_id_no_wait click_button_no_wait_by_id
# Click a button element identified by the value of its _name_ attribute
# and do not wait for the browser to reach ready state.
# @param (see #click_button_by_id)
def click_button_no_wait_by_name(browser, what, desc = '')
click_no_wait(browser, :button, :name, what, desc)
end
# Click a button element identified by the value of its _class_ attribute
# and do not wait for the browser to reach ready state.
# @param (see #click_button_by_id)
def click_button_no_wait_by_class(browser, what, desc = '')
click_no_wait(browser, :button, :class, what, desc)
end
alias click_button_by_class_no_wait click_button_no_wait_by_class
# Click a link element identified by the value of its _id_ attribute
# and do not wait for the browser to reach ready state.
# @param (see #click_button_by_id)
def click_link_no_wait_by_id(browser, what, desc = '')
click_no_wait(browser, :link, :id, what, desc)
end
alias click_no_wait_id click_link_no_wait_by_id
alias click_no_wait_by_id click_link_no_wait_by_id
alias click_id_no_wait click_link_no_wait_by_id
alias click_no_wait_link_by_id click_link_no_wait_by_id
# Click an image element identified by the value of its _alt_ attribute
# and do not wait for the browser to reach ready state.
# @param (see #click_button_by_id)
def click_img_no_wait_by_alt(browser, what, desc = '')
click_no_wait(browser, :image, :alt, what, desc)
end
alias click_img_by_alt_no_wait click_img_no_wait_by_alt
# Click a button element identified by the value in its text (innerHTML)
# and do not wait for the browser to reach ready state.
# @param (see #click_button_by_id)
def click_button_no_wait_by_text(browser, what, desc = '')
click_no_wait(browser, :button, :text, what, desc)
end
# Click a button element identified by the value of its _value_ attribute
# and do not wait for the browser to reach ready state.
# @param (see #click_button_by_id)
def click_button_no_wait_by_value(browser, what, desc = '')
click_no_wait(browser, :button, :value, what, desc)
end
# Click a button element identified by the value of its _name_ attribute
# and do not wait for the browser to reach ready state.
# @param (see #click_button_by_id)
def click_link_by_name_no_wait(browser, what, desc = '')
click_no_wait(browser, :link, :name, what, desc)
end
alias click_no_wait_name click_link_by_name_no_wait
alias click_name_no_wait click_link_by_name_no_wait
# Click a link element identified by the value in its text (innerHTML)
# and do not wait for the browser to reach ready state.
# @param (see #click_button_by_id)
def click_link_by_text_no_wait(browser, what, desc = '')
click_no_wait(browser, :link, :text, what, desc)
end
alias click_no_wait_text click_link_by_text_no_wait
alias click_text_no_wait click_link_by_text_no_wait
# Click a link element identified by the value of its _title_ attribute
# and do not wait for the browser to reach ready state.
# @param (see #click_button_by_id)
def click_title_no_wait(browser, what, desc = '')
click_no_wait(browser, :link, :title, what, desc)
end
# @!endgroup Click No Wait
# @!group Xpath
# Click a button element identified by the value of its _id_ attribute using the xpath functionality in Watir.
# A button is an HTML element with tag 'input' and type 'submit' or 'button'.
# @note Normally used only when the element is not located by other methods.
# @param (see #click_button_by_id)
def click_button_by_xpath_and_id(browser, what, desc = '')
msg = "Click button by xpath and id '#{what}' #{desc}"
if browser.button(:xpath, "//a[@id = '#{what}']").click
passed_to_log(msg)
true
else
failed_to_log(msg)
end
rescue
failed_to_log("Unable to click button by xpath and id '#{what}' #{desc} '#{$!}' (#{__LINE__})")
end
alias click_button_by_xpath click_button_by_xpath_and_id
# Click a link element identified by the value of its _id_ attribute using the xpath functionality in Watir.
# @note Normally used only when the element is not located by other methods.
# @param (see #click_button_by_id)
def click_link_by_xpath_and_id(browser, what, desc = '')
msg = "Click link by xpath and id '#{what}' #{desc}"
if browser.link(:xpath, "//a[@id = '#{what}']").click
passed_to_log(msg)
true
else
failed_to_log(msg)
end
rescue
failed_to_log("Unable to #{msg} '#{$!}' (#{__LINE__})")
end
alias click_link_by_xpath click_link_by_xpath_and_id
# Click a link element identified by the value of its _id_ attribute using the xpath functionality in Watir.
# @note Normally used only when the element is not located by other methods.
# @param (see #click_button_by_id)
def click_img_by_xpath_and_name(browser, what, desc = '')
msg = "Click image by xpath where name='#{what}' #{desc}"
if browser.link(:xpath, "//input[@name = '#{what}']").click
passed_to_log(msg)
true
else
failed_to_log(msg)
end
rescue
failed_to_log("Unable to click image by xpath where name='#{what}' #{desc} '#{$!}'")
end
alias click_img_by_xpath click_img_by_xpath_and_name
alias click_image_by_xpath click_img_by_xpath_and_name
alias click_image_by_xpath_and_name click_img_by_xpath_and_name
# @!endgroup Xpath
# @!group Core
# Click an image element identified by the value of its _src_ attribute and its index
# within the array of image elements with src containing +what+ and
# within the container referred to by +browser+.
# @param [Watir::Browser, Watir::Container] browser A reference to the browser window or container element to be tested.
# @param [String|Regexp] what A string or a regular expression to be found in the specified attribute that uniquely identifies the element.
# @param [Fixnum] index An integer that indicates the index of the element within the array of image elements with src containing +what+.
# @param [String] desc Contains a message or description intended to appear in the log and/or report output
def click_img_by_src_and_index(browser, what, index, desc = '')
msg = "Click image by src='#{what}' and index=#{index}"
msg << " #{desc}" if desc.length > 0
browser.image(:src => what, :index => index).click
if validate(browser, @myName, __LINE__)
passed_to_log(msg)
true
end
rescue
failed_to_log("Unable to #{msg} '#{$!}'")
end
# @!endgroup Core
# @!group Core
# Click the first row which contains a particular string in a table identified by attribute and value.
# A specific column in the table can also be specified.
#
# @param [Watir::Browser] browser A reference to the browser window or container element to be tested.
# @param [Symbol] how The element attribute used to identify the specific element.
# Valid values depend on the kind of element.
# Common values: :text, :id, :title, :name, :class, :href (:link only)
# @param [String|Regexp] what A string or a regular expression to be found in the *how* attribute that uniquely identifies the element.
# @param [String] text Full text string to be found in the table row.
# @param [String] desc Contains a message or description intended to appear in the log and/or report output
# @param [Fixnum] column Integer indicating the column to search for the text string.
# If not supplied all columns will be checked.
#
def click_table_row_with_text(browser, how, what, text, desc = '', column = nil)
msg = build_message("Click row with text #{text} in table :#{how}=>'#{what}.", desc)
table = get_table(browser, how, what, desc)
if table
index = get_index_of_row_with_text(table, text, column)
if index
table[index].click
if validate(browser, @myName, __LINE__)
passed_to_log(msg)
index
end
else
failed_to_log("#{msg} Row not found.")
end
else
failed_to_log("#{msg} Table not found.")
end
rescue
failed_to_log("Unable to #{msg}: '#{$!}'")
end
# Double click the first row which contains a particular string in a table identified by attribute and value.
# A specific column in the table can also be specified.
# Uses fire_event method in Watir to send 'onDblClick' event.
#
# @param (see #click_table_row_with_text)
#
def double_click_table_row_with_text(browser, how, what, text, desc = '', column = nil)
msg = build_message("Double click row with text #{text} in table :#{how}=>'#{what}.", desc)
table = get_table(browser, how, what, desc)
if table
index = get_index_of_row_with_text(table, text, column)
if index
table[index].fire_event('ondblclick')
if validate(browser, @myName, __LINE__)
passed_to_log(msg)
index
end
else
failed_to_log("#{msg} Row not found.")
end
else
failed_to_log("#{msg} Table not found.")
end
rescue
failed_to_log("Unable to #{msg}: '#{$!}'")
end
# @!endgroup Core
# @!group Tables
# Click the first row which contains a particular string in a table identified by the value in its _id_ attribute.
# A specific column in the table can also be specified.
#
# @param [Watir::Browser] browser A reference to the browser window or container element to be tested.
# @param [String|Regexp] what A string or a regular expression to be found in the *how* attribute that uniquely identifies the element.
# @param [String] text Full text string to be found in the table row.
# @param [String] desc Contains a message or description intended to appear in the log and/or report output
# @param [Fixnum] column Integer indicating the column to search for the text string.
# If not supplied all columns will be checked.
#
def click_table_row_with_text_by_id(browser, what, text, desc = '', column = nil)
click_table_row_with_text(browser, :id, what, text, desc, column)
end
# Click the first row which contains a particular string in a table identified by its index
# in the array of tables contained in +browser+.
# A specific column in the table can also be specified.
#
# @param (see #click_table_row_with_text_by_id)
#
def click_table_row_with_text_by_index(browser, what, text, desc = '', column = nil)
click_table_row_with_text(browser, :id, what, text, desc, column)
end
# Double click the first row which contains a particular string in a table identified by the value in its _id_ attribute.
# A specific column in the table can also be specified.
#
# @param (see #click_table_row_with_text_by_id)
#
def double_click_table_row_with_text_by_id(browser, what, text, desc = '', column = nil)
double_click_table_row_with_text(browser, :id, what, text, desc, column)
end
# Double click the first row which contains a particular string in a table identified by its index
# in the array of tables contained in +browser+.
# A specific column in the table can also be specified.
#
# @param (see #click_table_row_with_text_by_id)
#
def double_click_table_row_with_text_by_index(browser, idx, what, column = nil)
double_click_table_row_with_text(browser, :index, what, text, desc, column)
end
# @!endgroup Tables
# @!group Core
def click_popup_button(title, button, waitTime= 9, user_input=nil)
#TODO: is winclicker still viable/available?
wc = WinClicker.new
if wc.clickWindowsButton(title, button, waitTime)
passed_to_log("Window '#{title}' button '#{button}' found and clicked.")
true
else
failed_to_log("Window '#{title}' button '#{button}' not found. (#{__LINE__})")
end
wc = nil
# get a handle if one exists
# hwnd = $ie.enabled_popup(waitTime)
# if (hwnd) # yes there is a popup
# w = WinClicker.new
# if ( user_input )
# w.setTextValueForFileNameField( hwnd, "#{user_input}" )
# end
# # I put this in to see the text being input it is not necessary to work
# sleep 3
# # "OK" or whatever the name on the button is
# w.clickWindowsButton_hwnd( hwnd, "#{button}" )
# #
# # this is just cleanup
# w=nil
# end
end
def select_option_from_list(list, which, value, desc = '', nofail = false)
msg = build_message("Select :#{which}=>'#{value}", desc)
ok = true
if list
case which
when :text
list.select(value) #TODO: regex?
when :value
list.select_value(value) #TODO: regex?
when :index
list.select(list.getAllContents[value.to_i])
else
failed_to_log("#{msg} Select by #{which} not supported.")
ok = false
end
if ok
passed_to_log(msg)
true
else
if nofail
passed_to_log("#{msg} Option not found. No Fail specified.")
true
else
failed_to_log("#{msg} Option not found.")
end
end
else
failed_to_log("#{msg} Select list not found.")
end
rescue
failed_to_log("Unable to #{msg} '#{$!}'")
end
def select_option(browser, how, what, which, value, desc = '', nofail = false)
list = browser.select_list(how, what)
msg = build_message(" from list with :#{how}=>'#{what}", desc)
select_option_from_list(list, which, value, msg, nofail)
end
# @!endgroup Core
# @!group Select
def select_option_by_id_and_option_text(browser, what, option, nofail = false, desc = '')
select_option(browser, :id, what, :text, option, desc, nofail)
end
alias select_option_by_id select_option_by_id_and_option_text
alias select_option_by_id_and_text select_option_by_id_and_option_text
def select_option_by_name_and_option_text(browser, what, option, desc = '')
select_option(browser, :name, what, :text, option, desc)
end
alias select_option_by_name select_option_by_name_and_option_text
def select_option_by_title_and_option_text(browser, what, option, desc = '')
select_option(browser, :title, what, :text, option, desc)
end
def select_option_by_class_and_option_text(browser, what, option, desc = '')
select_option(browser, :class, what, :text, option, desc)
end
def select_option_by_name_and_option_value(browser, what, option, desc = '')
select_option(browser, :name, what, :value, option, desc)
end
def select_option_by_id_and_option_value(browser, what, option, desc = '')
select_option(browser, :id, what, :value, option, desc)
end
def select_option_by_id_and_index(browser, what, option, desc = '')
select_option(browser, :id, what, :index, option, desc)
end
def select_option_by_name_and_index(browser, what, option, desc = '')
select_option(browser, :name, what, :index, option, desc)
end
def select_option_by_xpath_and_index(browser, what, option, desc = '')
select_option(browser, :xpath, what, :index, option, desc)
end
# @!endgroup Select
# @!group Core
def set(browser, element, how, what, value = nil, desc = '')
msg = "Set #{element} #{how}=>'#{what}' "
msg << ", :value=>#{value} " if value
msg << " '#{desc}' " if desc.length > 0
case element
when :radio
browser.radio(how, what, value).set
when :checkbox
browser.checkbox(how, what, value).set
else
failed_to_log("#{__method__}: #{element} not supported")
end
if validate(browser, @myName, __LINE__)
passed_to_log(msg)
true
end
rescue
failed_to_log("#{msg} '#{$!}'")
end
def set_file_field(browser, how, what, filespec, desc = '')
msg = "Set file field #{how}=>#{what} to '#{filespec}."
msg << " #{desc}" if desc.length > 0
ff = browser.file_field(how, what)
if ff
ff.set filespec
sleep_for(8)
if validate(browser, @myName, __LINE__)
passed_to_log(msg)
true
end
else
failed_to_log("#{msg} File field not found.")
end
rescue
failed_to_log("Unable to #{msg} '#{$!}'")
end
# @!endgroup Core
# @!group Set
def set_checkbox(browser, how, what, value, desc = '')
set(browser, :checkbox, how, what, value, desc)
end
def set_checkbox_by_class(browser, what, value = nil, desc = '')
set(browser, :checkbox, :class, what, value, desc)
end
def set_checkbox_by_id(browser, what, value = nil, desc = '')
set(browser, :checkbox, :id, what, value, desc)
end
def set_checkbox_by_name(browser, what, value = nil, desc = '')
set(browser, :checkbox, :name, what, value, desc)
end
def set_checkbox_by_title(browser, what, value = nil, desc = '')
set(browser, :checkbox, :title, what, value, desc)
end
def set_checkbox_by_value(browser, what, desc = '')
set(browser, :checkbox, :value, what, nil, desc)
end
def set_radio(browser, how, what, value = nil, desc = '')
set(browser, :radio, how, what, value, desc)
end
def set_radio_two_attributes(browser, how1, what1, how2, what2, desc = '')
msg = "Set radio #{how1}='#{what1}', #{how2}= #{what2}"
msg << " '#{desc}' " if desc.length > 0
browser.radio(how1 => what1, how2 => what2).set
if validate(browser, @myName, __LINE__)
passed_to_log(msg)
true
end
rescue
failed_to_log("#{msg} '#{$!}'")
end
def set_radio_by_class(browser, what, value = nil, desc = '')
set(browser, :radio, :class, what, value, desc)
end
def set_radio_by_id(browser, what, value = nil, desc = '')
set(browser, :radio, :id, what, value, desc)
end
def set_radio_by_index(browser, index, desc = '')
set(browser, :radio, :index, index, value, desc)
end
def set_radio_by_name(browser, what, value = nil, desc = '')
set(browser, :radio, :name, what, value, desc)
end
def set_radio_by_title(browser, what, value = nil, desc = '')
set(browser, :radio, :title, what, value, desc)
end
def set_radio_by_value(browser, what, desc = '')
set(browser, :radio, :value, what, nil, desc)
end
def set_radio_no_wait_by_index(browser, index, desc = '')
#TODO: Not supported by Watir 1.8.x
msg = "Radio :index=#{index} "
radios = browser.radios
debug_to_log("\n#{radios}")
radio = radios[index]
debug_to_log("\n#{radio}")
radio.click_no_wait
if validate(browser)
msg << 'set ' + desc
passed_to_log(msg)
true
end
rescue
msg << 'not found ' + desc
failed_to_log("#{msg} (#{__LINE__})")
end
def set_radio_by_name_and_index(browser, name, index, desc = '')
set_radio_two_attributes(browser, :name, name, :index, index, desc)
end
def set_radio_by_name_and_text(browser, name, text, desc = '')
set_radio_two_attributes(browser, :name, name, :text, text, desc)
end
def set_radio_by_value_and_index(browser, value, index, desc = '')
set_radio_two_attributes(browser, :value, value, :index, index, desc)
end
def set_radio_by_name_and_value(browser, what, value, desc = '')
set_radio(browser, :name, what, value, desc)
end
def set_file_field_by_name(browser, what, path, desc = '')
set_file_field(browser, :name, what, path, desc)
end
def set_file_field_by_id(browser, what, path, desc = '')
set_file_field(browser, :id, what, path, desc)
end
# @!endgroup Set
# @!group Core
def clear(browser, element, how, what, value = nil, desc = '')
msg = "Clear #{element} #{how}=>'#{what}' "
msg << ", value=>#{value} " if value
msg << " '#{desc}' " if desc.length > 0
case element
when :radio
browser.radio(how, what, value).clear
when :checkbox
browser.checkbox(how, what, value).clear
when :text_field
browser.text_field(how, what).set('')
else
failed_to_log("#{__method__}: #{element} not supported")
end
if validate(browser, @myName, __LINE__)
passed_to_log(msg)
true
end
rescue
failed_to_log("#{msg} '#{$!}'")
end
# @!endgroup Core
# @!group Clear
def clear_checkbox(browser, how, what, value = nil, desc = '')
clear(browser, :checkbox, how, what, value, desc)
end
def clear_checkbox_by_name(browser, what, value = nil, desc = '')
clear(browser, :checkbox, :name, what, value, desc)
end
def clear_checkbox_by_id(browser, what, value = nil, desc = '')
clear(browser, :checkbox, :id, what, value, desc)
end
def clear_radio(browser, how, what, value = nil, desc = '')
clear(browser, :radio, how, what, value, desc)
end
# @!endgroup Clear
# Set skip_value_check = true when string is altered by application and/or
# this method will be followed by validate_text
def clear_textfield(browser, how, which, skip_value_check = false)
if browser.text_field(how, which).exists?
tf = browser.text_field(how, which)
if validate(browser, @myName, __LINE__)
tf.clear
if validate(browser, @myName, __LINE__)
if tf.value == ''
passed_to_log("Textfield #{how}='#{which}' cleared.")
true
elsif skip_value_check
passed_to_log("Textfield #{how}='#{which}' cleared. (skip value check)")
true
else
failed_to_log("Textfield #{how}='#{which}' not cleared: Found:'#{tf.value}'. (#{__LINE__})")
end
end
end
else
failed_to_log("Textfield id='#{id}' to clear. (#{__LINE__})")
end
rescue
failed_to_log("Textfield id='#{id}' could not be cleared: '#{$!}'. (#{__LINE__})")
end
=begin rdoc
:category: A_rdoc_test
Enter a string into a text field element identified by an attribute type and a value.
After the entry the value in the text field is validated against the input value unless the *skip_value_check*
parameter is set to true
_Parameters_::
*browser* - a reference to the browser window to be tested
*how* - the element attribute used to identify the specific element. Valid values depend on the kind of element.
Common values: :text, :id, :title, :name, :class, :href (:link only)
*what* - a string or a regular expression to be found in the *how* attribute that uniquely identifies the element.
*value* - a string to be entered in the text field
*desc* - a string containing a message or description intended to appear in the log and/or report output
*skip_value_check* (Optional, default is false). Set to true to prevent the built-in verification
that the text field actually contains the value entered. Useful when application reformats
or otherwise edits the input string.
_Example_
set_text_field(browser, :name, /thisTextfield/, 'The text to enter')
=end
def set_text_field(browser, how, what, value, desc = '', skip_value_check = false)
#TODO: fix this to handle Safari password field
msg = "Set textfield #{how}='#{what}' to '#{value}'"
msg << " #{desc}" if desc.length > 0
msg << " (Skip value check)" if skip_value_check
if browser.text_field(how, what).exists?
tf = browser.text_field(how, what)
debug_to_log("#{tf.inspect}")
if validate(browser, @myName, __LINE__)
tf.set(value)
if validate(browser, @myName, __LINE__)
if tf.value == value
passed_to_log(msg)
true
elsif skip_value_check
passed_to_log(msg)
true
else
failed_to_log("#{msg}: Found:'#{tf.value}'.")
end
end
end
else
failed_to_log("Textfield #{how}='#{what}' not found to set to '#{value}''")
end
rescue
failed_to_log("Unable to '#{msg}': '#{$!}'")
end
alias set_textfield set_text_field
def set_textfield_by_name(browser, name, value, desc = '', skip_value_check = false)
if browser.text_field(:name, name).exists?
tf = browser.text_field(:name, name)
# Workaround because browser.text_field doesn't work for password fields in Safari
elsif @browserAbbrev.eql?("S")
tf = browser.password(:name, name)
end
if tf.exists?
if validate(browser, @myName, __LINE__)
tf.set(value)
if validate(browser, @myName, __LINE__)
if tf.value == value
passed_to_log("Set textfield name='#{name}' to '#{value}' #{desc}")
true
elsif skip_value_check
passed_to_log("Set textfield name='#{name}' to '#{value}' #{desc} (skip value check)")
true
else
failed_to_log("Set textfield name='#{name}' to '#{value}': Found:'#{tf.value}'. #{desc} (#{__LINE__})")
end
end
end
else
failed_to_log("Textfield name='#{name}' not found to set to '#{value}'. #{desc} (#{__LINE__})")
end
rescue
failed_to_log("Textfield name='#{name}' could not be set to '#{value}': '#{$!}'. #{desc} (#{__LINE__})")
end
=begin rdoc
:category: A_rdoc_test
Enter a string into a text field element identifiedelement identified by the value in its id attribute.
_Parameters_::
*browser* - a reference to the browser window to be tested
*id* - a string or a regular expression to be found in the id attribute that uniquely identifies the element.
*value* - a string to be entered in the text field
*desc* - a string containing a message or description intended to appear in the log and/or report output
*skip_value_check* (Optional, default is false). Set to true to prevent the built-in verification
that the text field actually contains the value entered. Useful when application reformats
or otherwise edits the input string.
_Example_
set_text_field_by_id(browser, /thisTextfield/, 'The text to enter')
=end
def set_textfield_by_id(browser, id, value, desc = '', skip_value_check = false)
set_text_field(browser, :id, id, value, desc, skip_value_check)
end
def set_textfield_by_title(browser, title, value, desc = '', skip_value_check = false)
set_text_field(browser, :title, title, value, desc, skip_value_check)
end
def set_textfield_by_class(browser, what, value, desc = '', skip_value_check = false)
set_text_field(browser, :class, what, value, desc, skip_value_check)
end
=begin rdoc
:category: A_rdoc_test
Enter a string into a text field element identified by an attribute type and a value.
After the entry the value in the text field is validated against the *valid_value*. Use when the application reformats
or performs edits on the input value.
_Parameters_::
*browser* - a reference to the browser window to be tested
*how* - the element attribute used to identify the specific element. Valid values depend on the kind of element.
Common values: :text, :id, :title, :name, :class, :href (:link only)
*what* - a string or a regular expression to be found in the *how* attribute that uniquely identifies the element.
*value* - a string to be entered in the text field
*desc* - a string containing a message or description intended to appear in the log and/or report output
*valid_value* (Optional, default is nil). Set to the expected value
_Example_
set_text_field_and_validate(browser, :id, /AmountTendered/, '7500', 'Dollar formatting', '$7,500.00')
=end
def set_text_field_and_validate(browser, how, what, value, desc = '', valid_value = nil)
#NOTE: use when value and valid_value differ as with dollar reformatting
if set_text_field(browser, how, what, value, desc, true)
expected = valid_value ? valid_value : value
validate_textfield_value(browser, how, what, expected)
end
rescue
failed_to_log("Unable to '#{msg}': '#{$!}'")
end
# @!group Core
# Fire an event on a specific DOM element identified by one of its attributes and that attribute's value.
#
# @example
# # html for a link element:
# # Pickaxe
#
# fire_event(browser, :link, :text, 'Pickaxe', 'onMouseOver')
#
# @param [Watir::Browser] browser A reference to the browser window or container element to be tested.
# @param [Symbol] element The kind of element to click. Must be one of the elements recognized by Watir.
# Some common values are :link, :button, :image, :div, :span.
# @param [Symbol] how The element attribute used to identify the specific element.
# Valid values depend on the kind of element.
# Common values: :text, :id, :title, :name, :class, :href (:link only)
# @param [String|Regexp] what A string or a regular expression to be found in the *how* attribute that uniquely identifies the element.
# @param [String] event A string identifying the event to be fired.
# @param [String] desc Contains a message or description intended to appear in the log and/or report output
#
def fire_event(browser, element, how, what, event, desc = '')
msg = "#{element.to_s.titlecase}: #{how}=>'#{what}' event:'#{event}'"
msg1 = "#{element.to_s.titlecase}(#{how}, '#{what}')"
begin
case element
when :link
browser.link(how, what).fire_event(event)
when :button
browser.button(how, what).fire_event(event)
when :image
browser.image(how, what).fire_event(event)
when :span
browser.span(how, what).fire_event(event)
when :div
browser.div(how, what).fire_event(event)
else
browser.element(how, what).fire_event(event)
end
rescue => e
if not rescue_me(e, __method__, "browser(#{msg1}).fire_event('#{event}')", "#{browser.class}")
raise e
end
end
if validate(browser, @myName, __LINE__)
passed_to_log("Fire event: #{msg}. #{desc}")
true
end
rescue
failed_to_log("Unable to fire event: #{msg}. '#{$!}' #{desc}")
end
# @!endgroup Core
# @!group Fire Event
# Fire an event on a link element identified by the value in its text (innerHTML)
#
# @example
# # html for a link element:
# # Pickaxe
#
# fire_event_on_link_by_text(browser, 'Pickaxe', 'onMouseOver')
#
# @param [Watir::Browser] browser A reference to the browser window or container element to be tested.
# @param [String|Regexp] what A string or a regular expression to be found in the *how* attribute that uniquely identifies the element.
# @param [String] event A string identifying the event to be fired.
# @param [String] desc Contains a message or description intended to appear in the log and/or report output
#
def fire_event_on_link_by_text(browser, what, event, desc = '')
fire_event(browser, :link, :text, what, event, desc)
end
alias fire_event_text fire_event_on_link_by_text
alias fire_event_by_text fire_event_on_link_by_text
# Fire an event on a link element identified by the value in its _id_ attribute.
#
# @example
# # html for a link element:
# # Pickaxe
#
# fire_event_on_link_by_id(browser, 'one', 'onMouseOver')
#
# @param (see #fire_event_on_link_by_text)
#
def fire_event_on_link_by_id(browser, what, event, desc = '')
fire_event(browser, :link, :id, what, event, desc)
end
alias fire_event_id fire_event_on_link_by_id
alias fire_event_by_id fire_event_on_link_by_id
# Fire an event on a image element identified by the value in its _src_ attribute.
# Take care to escape characters in the source url that are reserved by Regexp.
# @param (see #fire_event_on_link_by_text)
#
def fire_event_on_image_by_src(browser, what, event, desc = '')
fire_event(browser, :img, :src, what, event, desc)
end
alias fire_event_src fire_event_on_image_by_src
alias fire_event_image_by_src fire_event_on_image_by_src
# @!endgroup Fire Event
end
end
end