Skip to content
Snippets Groups Projects
Commit 35193d5c authored by Ramya Authappan's avatar Ramya Authappan
Browse files

Using find_elements instead of all_elements

parent 80ff142c
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -80,8 +80,8 @@ module QA
page.evaluate_script('xhr.status') == 200
end
 
def find_element(name, wait: Capybara.default_max_wait_time)
find(element_selector_css(name), wait: wait)
def find_element(name, text_filter = nil, wait: Capybara.default_max_wait_time)
find(element_selector_css(name), wait: wait, text: text_filter)
end
 
def all_elements(name)
Loading
Loading
Loading
Loading
@@ -37,17 +37,17 @@ module QA
 
def select_comments_only_filter
click_element :discussion_filter
all_elements(:filter_options)[1].click
find_element(:filter_options, "Show comments only").click
end
 
def select_history_only_filter
click_element :discussion_filter
all_elements(:filter_options).last.click
find_element(:filter_options, "Show history only").click
end
 
def select_all_activities_filter
click_element :discussion_filter
all_elements(:filter_options).first.click
find_element(:filter_options, "Show all activity").click
end
end
end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment