Skip to content
Snippets Groups Projects
Commit c4d53811 authored by Mark Lapierre's avatar Mark Lapierre
Browse files

Merge branch 'master' into 'master'

Use the same standard for method names on project activity and menu page objects

See merge request gitlab-org/gitlab-ce!24738
parents f012e934 75612415
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -6,7 +6,7 @@ module QA
element :push_events, "event_filter_link EventFilter::PUSH, _('Push events')" # rubocop:disable QA/ElementWithPattern
end
 
def go_to_push_events
def click_push_events
click_on 'Push events'
end
end
Loading
Loading
Loading
Loading
@@ -30,7 +30,7 @@ module QA
end
end
 
def go_to_activity
def click_activity
within_sidebar do
click_element(:activity_link)
end
Loading
Loading
Loading
Loading
@@ -14,8 +14,8 @@ module QA
end
project_push.project.visit!
 
Page::Project::Menu.perform(&:go_to_activity)
Page::Project::Activity.perform(&:go_to_push_events)
Page::Project::Menu.perform(&:click_activity)
Page::Project::Activity.perform(&:click_push_events)
 
expect(page).to have_content('pushed new branch master')
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