Commit 8b2422c6 authored by Walmyr Lima's avatar Walmyr Lima

Create issues analytics page object

And autoload it.
parent fd9864fa
......@@ -102,6 +102,8 @@ module QA
end
module Group
autoload :IssuesAnalytics, 'qa/ee/page/group/issues_analytics'
module Epic
autoload :Index, 'qa/ee/page/group/epic/index'
autoload :Show, 'qa/ee/page/group/epic/show'
......
# frozen_string_literal: true
module QA
module EE
module Page
module Group
class IssuesAnalytics < QA::Page::Base
view 'ee/app/assets/javascripts/issues_analytics/components/issues_analytics.vue' do
element :issues_analytics_graph
end
def graph
find_element(:issues_analytics_graph)
end
end
end
end
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment