Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/page/group/dependency_proxy.rb')
-rw-r--r--qa/qa/page/group/dependency_proxy.rb26
1 files changed, 26 insertions, 0 deletions
diff --git a/qa/qa/page/group/dependency_proxy.rb b/qa/qa/page/group/dependency_proxy.rb
new file mode 100644
index 00000000000..f637c79cffc
--- /dev/null
+++ b/qa/qa/page/group/dependency_proxy.rb
@@ -0,0 +1,26 @@
+# frozen_string_literal: true
+
+module QA
+ module Page
+ module Group
+ class DependencyProxy < QA::Page::Base
+ view 'app/views/groups/dependency_proxies/show.html.haml' do
+ element :dependency_proxy_setting_toggle
+ end
+
+ view 'app/views/groups/dependency_proxies/_url.html.haml' do
+ element :dependency_proxy_count
+ end
+
+ def has_dependency_proxy_enabled?
+ toggle = find_element(:dependency_proxy_setting_toggle)
+ toggle[:class].include?('is-checked')
+ end
+
+ def has_blob_count?(blob_text)
+ has_element?(:dependency_proxy_count, text: blob_text)
+ end
+ end
+ end
+ end
+end