Skip to content
代码片段 群组 项目
提交 b2ff9cd9 编辑于 作者: Jose Ivan Vargas's avatar Jose Ivan Vargas
浏览文件

Merge branch 'testid-admin-settings' into 'master'

No related branches found
No related tags found
无相关合并请求
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
.settings-content .settings-content
= render 'performance_bar' = render 'performance_bar'
%section.settings.as-usage.no-animate#js-usage-settings{ class: ('expanded' if expanded_by_default?), data: { qa_selector: 'usage_statistics_settings_content' } } %section.settings.as-usage.no-animate#js-usage-settings{ class: ('expanded' if expanded_by_default?), data: { testid: 'usage-statistics-settings-content' } }
.settings-header#usage-statistics .settings-header#usage-statistics
%h4.settings-title.js-settings-toggle.js-settings-toggle-trigger-only %h4.settings-title.js-settings-toggle.js-settings-toggle-trigger-only
= _('Usage statistics') = _('Usage statistics')
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
= file_field_tag :file, class: '' = file_field_tag :file, class: ''
.row .row
.form-actions.col-sm-12 .form-actions.col-sm-12
= render Pajamas::ButtonComponent.new(type: :submit, variant: :confirm, button_options: { class: 'gl-mr-2', data: { qa_selector: 'import_project_button' }}) do = render Pajamas::ButtonComponent.new(type: :submit, variant: :confirm, button_options: { class: 'gl-mr-2', data: { testid: 'import-project-button' }}) do
= _('Import project') = _('Import project')
= render Pajamas::ButtonComponent.new(href: new_project_path) do = render Pajamas::ButtonComponent.new(href: new_project_path) do
= _('Cancel') = _('Cancel')
......
.row .row
.form-group.project-name.col-sm-12 .form-group.project-name.col-sm-12
= label_tag :name, _('Project name'), class: 'label-bold' = label_tag :name, _('Project name'), class: 'label-bold'
= text_field_tag :name, @name, placeholder: "My awesome project", class: "js-project-name form-control gl-form-input input-lg", autofocus: true, required: true, aria: { required: true }, data: { qa_selector: 'project_name_field' } = text_field_tag :name, @name, placeholder: "My awesome project", class: "js-project-name form-control gl-form-input input-lg", autofocus: true, required: true, aria: { required: true }, data: { testid: 'project-name-field' }
.form-group.col-12.col-sm-6.gl-pr-0 .form-group.col-12.col-sm-6.gl-pr-0
= label_tag :namespace_id, _('Project URL'), class: 'label-bold' = label_tag :namespace_id, _('Project URL'), class: 'label-bold'
.input-group.gl-flex-nowrap .input-group.gl-flex-nowrap
...@@ -21,4 +21,4 @@ ...@@ -21,4 +21,4 @@
.gl-align-self-center.gl-pl-5 / .gl-align-self-center.gl-pl-5 /
.form-group.col-12.col-sm-6.project-path .form-group.col-12.col-sm-6.project-path
= label_tag :path, _('Project slug'), class: 'label-bold' = label_tag :path, _('Project slug'), class: 'label-bold'
= text_field_tag :path, @path, placeholder: "my-awesome-project", class: "js-path-name form-control gl-form-input", required: true, aria: { required: true }, data: { qa_selector: 'project_slug_field' } = text_field_tag :path, @path, placeholder: "my-awesome-project", class: "js-path-name form-control gl-form-input", required: true, aria: { required: true }
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
= html_escape(_("Importing GitLab projects? Migrating GitLab projects when migrating groups by direct transfer is in Beta. %{link_start}Learn more.%{link_end}")) % { link_start: docs_link, link_end: '</a>'.html_safe } = html_escape(_("Importing GitLab projects? Migrating GitLab projects when migrating groups by direct transfer is in Beta. %{link_start}Learn more.%{link_end}")) % { link_start: docs_link, link_end: '</a>'.html_safe }
.import-buttons .import-buttons
- if gitlab_project_import_enabled? - if gitlab_project_import_enabled?
.import_gitlab_project.has-tooltip{ data: { container: 'body', qa_selector: 'gitlab_import_button' } } .import_gitlab_project.has-tooltip{ data: { container: 'body', testid: 'gitlab-import-button' } }
= render Pajamas::ButtonComponent.new(href: '#', icon: 'tanuki', button_options: { class: 'btn_import_gitlab_project js-import-project-btn', data: { href: new_import_gitlab_project_path, platform: 'gitlab_export', **tracking_attrs_data(track_label, 'click_button', 'gitlab_export') } }) do = render Pajamas::ButtonComponent.new(href: '#', icon: 'tanuki', button_options: { class: 'btn_import_gitlab_project js-import-project-btn', data: { href: new_import_gitlab_project_path, platform: 'gitlab_export', **tracking_attrs_data(track_label, 'click_button', 'gitlab_export') } }) do
= _('GitLab export') = _('GitLab export')
......
...@@ -9,7 +9,7 @@ class MetricsAndProfiling < Page::Base ...@@ -9,7 +9,7 @@ class MetricsAndProfiling < Page::Base
view 'app/views/admin/application_settings/metrics_and_profiling.html.haml' do view 'app/views/admin/application_settings/metrics_and_profiling.html.haml' do
element 'performance-bar-settings-content' element 'performance-bar-settings-content'
element :usage_statistics_settings_content element 'usage-statistics-settings-content'
end end
def expand_performance_bar(&block) def expand_performance_bar(&block)
...@@ -19,7 +19,7 @@ def expand_performance_bar(&block) ...@@ -19,7 +19,7 @@ def expand_performance_bar(&block)
end end
def expand_usage_statistics(&block) def expand_usage_statistics(&block)
expand_content(:usage_statistics_settings_content) do expand_content('usage-statistics-settings-content') do
Component::UsageStatistics.perform(&block) Component::UsageStatistics.perform(&block)
end end
end end
......
...@@ -11,17 +11,16 @@ def self.included(base) ...@@ -11,17 +11,16 @@ def self.included(base)
super super
base.view 'app/views/import/gitlab_projects/new.html.haml' do base.view 'app/views/import/gitlab_projects/new.html.haml' do
element :import_project_button element 'import-project-button'
end end
base.view 'app/views/import/shared/_new_project_form.html.haml' do base.view 'app/views/import/shared/_new_project_form.html.haml' do
element :project_name_field element 'project-name-field'
element :project_slug_field
end end
end end
def set_imported_project_name(name) def set_imported_project_name(name)
fill_element(:project_name_field, name) fill_element('project-name-field', name)
end end
def attach_exported_file(path) def attach_exported_file(path)
...@@ -29,7 +28,7 @@ def attach_exported_file(path) ...@@ -29,7 +28,7 @@ def attach_exported_file(path)
end end
def click_import_gitlab_project def click_import_gitlab_project
click_element(:import_project_button) click_element('import-project-button')
wait_until(reload: false) do wait_until(reload: false) do
has_notice?("The project was successfully imported.") || has_element?('project-name-content') has_notice?("The project was successfully imported.") || has_element?('project-name-content')
......
...@@ -9,16 +9,16 @@ def self.included(base) ...@@ -9,16 +9,16 @@ def self.included(base)
super super
base.view 'app/views/projects/_import_project_pane.html.haml' do base.view 'app/views/projects/_import_project_pane.html.haml' do
element :gitlab_import_button element 'gitlab-import-button'
end end
end end
def click_gitlab def click_gitlab
retry_until(reload: true, max_attempts: 10, message: 'Waiting for import source to be enabled') do retry_until(reload: true, max_attempts: 10, message: 'Waiting for import source to be enabled') do
has_element?(:gitlab_import_button) has_element?('gitlab-import-button')
end end
click_element(:gitlab_import_button) click_element('gitlab-import-button')
end end
end end
end end
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册