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/lib/gitlab/page/subscriptions/new.stub.rb')
-rw-r--r--qa/lib/gitlab/page/subscriptions/new.stub.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/qa/lib/gitlab/page/subscriptions/new.stub.rb b/qa/lib/gitlab/page/subscriptions/new.stub.rb
index a7f5d689838..e660d198478 100644
--- a/qa/lib/gitlab/page/subscriptions/new.stub.rb
+++ b/qa/lib/gitlab/page/subscriptions/new.stub.rb
@@ -621,6 +621,30 @@ module Gitlab
def total_amount?
# This is a stub, used for indexing. The method is dynamically generated.
end
+
+ # @note Defined as +div :lock_competition_error+
+ # @return [String] The text content or value of +lock_competition_error+
+ def lock_competition_error
+ # This is a stub, used for indexing. The method is dynamically generated.
+ end
+
+ # @example
+ # Gitlab::Page::Subscriptions::New.perform do |new|
+ # expect(new.lock_competition_error_element).to exist
+ # end
+ # @return [Watir::Div] The raw +Div+ element
+ def lock_competition_error_element
+ # This is a stub, used for indexing. The method is dynamically generated.
+ end
+
+ # @example
+ # Gitlab::Page::Subscriptions::New.perform do |new|
+ # expect(new).to be_lock_competition_error
+ # end
+ # @return [Boolean] true if the +lock_competition_error+ element is present on the page
+ def lock_competition_error?
+ # This is a stub, used for indexing. The method is dynamically generated.
+ end
end
end
end