diff options
author | Rémy Coutable <remy@rymai.me> | 2019-09-02 11:32:09 +0000 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2019-09-02 11:32:09 +0000 |
commit | 305260df0606c2bacbc2aae54a1dc412ec14fe39 (patch) | |
tree | f3cf46bf6799fbece1883f621e738944f90ee9a9 /qa | |
parent | 71008250b2fe63291f22b212bd196fb29ef0c177 (diff) | |
parent | 20b45b8ce1557282e00283d74604cbfc2121ee8d (diff) | |
download | gitlab-ce-305260df0606c2bacbc2aae54a1dc412ec14fe39.tar.gz |
Merge branch 'qa/e2e-test-custom-email' into 'master'66360-zoom-for-incident-management-integration
Update views for testability and update page objects
See merge request gitlab-org/gitlab-ce!32451
Diffstat (limited to 'qa')
-rw-r--r-- | qa/qa/page/admin/menu.rb | 9 | ||||
-rw-r--r-- | qa/qa/page/settings/common.rb | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/qa/qa/page/admin/menu.rb b/qa/qa/page/admin/menu.rb index 7c214da8486..5a18ebd7af8 100644 --- a/qa/qa/page/admin/menu.rb +++ b/qa/qa/page/admin/menu.rb @@ -11,12 +11,21 @@ module QA element :admin_settings_repository_item element :admin_settings_general_item element :admin_settings_metrics_and_profiling_item + element :admin_settings_preferences_link end view 'app/views/layouts/nav/sidebar/_admin.html.haml' do element :integration_settings_link end + def go_to_preferences_settings + hover_settings do + within_submenu do + click_element :admin_settings_preferences_link + end + end + end + def go_to_repository_settings hover_settings do within_submenu do diff --git a/qa/qa/page/settings/common.rb b/qa/qa/page/settings/common.rb index bede3fde105..2d7b41c76e1 100644 --- a/qa/qa/page/settings/common.rb +++ b/qa/qa/page/settings/common.rb @@ -11,7 +11,7 @@ module QA within_element(element_name) do # Because it is possible to click the button before the JS toggle code is bound wait(reload: false) do - click_button 'Expand' unless has_css?('button', text: 'Collapse') + click_button 'Expand' unless has_css?('button', text: 'Collapse', wait: 1) has_content?('Collapse') end |