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
path: root/qa/lib
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-01-12 00:14:42 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-01-12 00:14:42 +0300
commit830c9943a95cbd755700d6624c64a158b2602cd0 (patch)
tree6b0c3710d66ba89732fbb672687233ef785e5133 /qa/lib
parentb330f7f0bfb2035b03e84e5fa751816b6ad9b841 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'qa/lib')
-rw-r--r--qa/lib/gitlab/page/main/welcome.rb13
-rw-r--r--qa/lib/gitlab/page/main/welcome.stub.rb33
2 files changed, 0 insertions, 46 deletions
diff --git a/qa/lib/gitlab/page/main/welcome.rb b/qa/lib/gitlab/page/main/welcome.rb
deleted file mode 100644
index a2df1da61c9..00000000000
--- a/qa/lib/gitlab/page/main/welcome.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# frozen_string_literal: true
-
-module Gitlab
- module Page
- module Main
- class Welcome < Chemlab::Page
- path '/users/sign_up/welcome'
-
- button :get_started_button
- end
- end
- end
-end
diff --git a/qa/lib/gitlab/page/main/welcome.stub.rb b/qa/lib/gitlab/page/main/welcome.stub.rb
deleted file mode 100644
index a10e697bcbf..00000000000
--- a/qa/lib/gitlab/page/main/welcome.stub.rb
+++ /dev/null
@@ -1,33 +0,0 @@
-# frozen_string_literal: true
-
-module Gitlab
- module Page
- module Main
- module Welcome
- # @note Defined as +button :get_started_button+
- # Clicks +get_started_button+
- def get_started_button
- # This is a stub, used for indexing. The method is dynamically generated.
- end
-
- # @example
- # Gitlab::Page::Main::Welcome.perform do |welcome|
- # expect(welcome.get_started_button_element).to exist
- # end
- # @return [Watir::Button] The raw +Button+ element
- def get_started_button_element
- # This is a stub, used for indexing. The method is dynamically generated.
- end
-
- # @example
- # Gitlab::Page::Main::Welcome.perform do |welcome|
- # expect(welcome).to be_get_started_button
- # end
- # @return [Boolean] true if the +get_started_button+ element is present on the page
- def get_started_button?
- # This is a stub, used for indexing. The method is dynamically generated.
- end
- end
- end
- end
-end