diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2019-11-28 09:06:32 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2019-11-28 09:06:32 +0000 |
commit | 79348faced5e7e62103ad27f6a6594dfdca463e2 (patch) | |
tree | 385756f26c6d0b57c0c9e841b83784ff86634d5b /qa | |
parent | 45a05a8ba33101ffcd154ee84307885b48b17962 (diff) | |
download | gitlab-ce-79348faced5e7e62103ad27f6a6594dfdca463e2.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'qa')
-rw-r--r-- | qa/qa/page/component/issuable/common.rb | 1 | ||||
-rw-r--r-- | qa/qa/page/project/issue/show.rb | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/qa/qa/page/component/issuable/common.rb b/qa/qa/page/component/issuable/common.rb index cfd8ac1e7c8..9ecc8f73bdb 100644 --- a/qa/qa/page/component/issuable/common.rb +++ b/qa/qa/page/component/issuable/common.rb @@ -8,6 +8,7 @@ module QA def self.included(base) base.view 'app/assets/javascripts/issue_show/components/title.vue' do element :edit_button + element :title, required: true end base.view 'app/assets/javascripts/issue_show/components/fields/title.vue' do diff --git a/qa/qa/page/project/issue/show.rb b/qa/qa/page/project/issue/show.rb index 6ec80b7c9cc..2322b5607b0 100644 --- a/qa/qa/page/project/issue/show.rb +++ b/qa/qa/page/project/issue/show.rb @@ -157,7 +157,7 @@ module QA def select_filter_with_text(text) retry_on_exception do - click_body + click_element(:title) click_element :discussion_filter find_element(:filter_options, text: text).click end |