Skip to content
Snippets Groups Projects
Commit fedc6de3 authored by Ramya Authappan's avatar Ramya Authappan Committed by Sanad Liaquat
Browse files

Fix for the filter spec failure

parent 8883cfca
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -36,6 +36,11 @@ module QA
end
 
def select_comments_only_filter
click_element :discussion_filter
all_elements(:filter_options)[1].click
end
def select_history_only_filter
click_element :discussion_filter
all_elements(:filter_options).last.click
end
Loading
Loading
Loading
Loading
@@ -31,6 +31,7 @@ module QA
create_issue
 
Page::Project::Issue::Show.perform do |show|
show.select_all_activities_filter
show.comment('See attached banana for scale', attachment: file_to_attach)
 
show.refresh
Loading
Loading
Loading
Loading
@@ -27,6 +27,11 @@ module QA
 
expect(show_page).to have_content("made the issue confidential")
expect(show_page).to have_content("My own comment")
show_page.select_history_only_filter
expect(show_page).to have_content("made the issue confidential")
expect(show_page).not_to have_content("My own comment")
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