diff options
author | Grzegorz Bizon <grzegorz@gitlab.com> | 2018-09-10 06:54:44 +0000 |
---|---|---|
committer | Grzegorz Bizon <grzegorz@gitlab.com> | 2018-09-10 06:54:44 +0000 |
commit | 2863fcceaadb5c16a8ee3e27d7166620aeb15358 (patch) | |
tree | 53751a5af21c5e126311b42295148f756e241425 | |
parent | 30227f8e8c277f755ac691d7705e503848f76395 (diff) | |
parent | ccb9ac29c6e435bb613821708d99b9488744319f (diff) | |
download | gitlab-ce-2863fcceaadb5c16a8ee3e27d7166620aeb15358.tar.gz |
Merge branch 'sh-fix-new-project-qa' into 'master'
Fix QA builds failing due to change in new project page behavior
Closes gitlab-qa#322
See merge request gitlab-org/gitlab-ce!21621
-rw-r--r-- | qa/qa/page/project/new.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qa/qa/page/project/new.rb b/qa/qa/page/project/new.rb index 1fb569b0f29..0766c98da6f 100644 --- a/qa/qa/page/project/new.rb +++ b/qa/qa/page/project/new.rb @@ -11,6 +11,7 @@ module QA view 'app/views/projects/_new_project_fields.html.haml' do element :project_namespace_select element :project_namespace_field, 'namespaces_options' + element :project_name, 'text_field :name' element :project_path, 'text_field :path' element :project_description, 'text_area :description' element :project_create_button, "submit 'Create project'" @@ -32,7 +33,7 @@ module QA end def choose_name(name) - fill_in 'project_path', with: name + fill_in 'project_name', with: name end def add_description(description) |