diff options
author | Enrique Alcantara <ealcantara@gitlab.com> | 2019-03-26 23:05:50 -0400 |
---|---|---|
committer | Enrique Alcantara <ealcantara@gitlab.com> | 2019-04-03 15:23:04 -0400 |
commit | 119a5f0c86efbc2b3e853623880a1c49f9e7d352 (patch) | |
tree | e6861fcfa5ae7482b632065ce06523fd4693fcff /qa | |
parent | ca32773dbfc345de551f8b107692d1995e717fa3 (diff) | |
download | gitlab-ce-119a5f0c86efbc2b3e853623880a1c49f9e7d352.tar.gz |
Specify new validation message selector
Update QA selector to specify that API URL
is a input type=url field
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 |