diff options
author | Mike Greiling <mike@pixelcog.com> | 2019-04-04 21:53:03 +0000 |
---|---|---|
committer | Mike Greiling <mike@pixelcog.com> | 2019-04-04 21:53:03 +0000 |
commit | d3b19f6666df0c9d667165b0b765a4aedcf1e44b (patch) | |
tree | b2221323625187db1458520c43fc20519f3ebefc /qa | |
parent | 677a7c811ee723d6c8c0fb8e2dc6e124d7dad028 (diff) | |
parent | 9580c93b829ce53ce51d48ff2495eff7f97e17e4 (diff) | |
download | gitlab-ce-d3b19f6666df0c9d667165b0b765a4aedcf1e44b.tar.gz |
Merge branch '57602-create-cluster-validations' into 'master'
Display cluster form validation error messages inline
Closes #57602
See merge request gitlab-org/gitlab-ce!26502
Diffstat (limited to 'qa')
-rw-r--r-- | qa/qa/page/project/operations/kubernetes/add_existing.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/qa/page/project/operations/kubernetes/add_existing.rb b/qa/qa/page/project/operations/kubernetes/add_existing.rb index ffd5b36e1ae..63a230fbdb2 100644 --- a/qa/qa/page/project/operations/kubernetes/add_existing.rb +++ b/qa/qa/page/project/operations/kubernetes/add_existing.rb @@ -6,7 +6,7 @@ module QA class AddExisting < Page::Base view 'app/views/clusters/clusters/user/_form.html.haml' do element :cluster_name, 'text_field :name' # rubocop:disable QA/ElementWithPattern - element :api_url, 'text_field :api_url' # rubocop:disable QA/ElementWithPattern + element :api_url, 'url_field :api_url' # rubocop:disable QA/ElementWithPattern element :ca_certificate, 'text_area :ca_cert' # rubocop:disable QA/ElementWithPattern element :token, 'text_field :token' # rubocop:disable QA/ElementWithPattern element :add_cluster_button, "submit s_('ClusterIntegration|Add Kubernetes cluster')" # rubocop:disable QA/ElementWithPattern |