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

billing.stub.rb « settings « group « page « gitlab « lib « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c49d744d61f9c9684f1eac56abc3161f5058228d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
# frozen_string_literal: true

module Gitlab
  module Page
    module Group
      module Settings
        module Billing
          # @note Defined as +h4 :billing_plan_header+
          # @return [String] The text content or value of +billing_plan_header+
          def billing_plan_header
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @example
          #   Gitlab::Page::Group::Settings::Billing.perform do |billing|
          #     expect(billing.billing_plan_header_element).to exist
          #   end
          # @return [Watir::H4] The raw +H4+ element
          def billing_plan_header_element
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @example
          #   Gitlab::Page::Group::Settings::Billing.perform do |billing|
          #     expect(billing).to be_billing_plan_header
          #   end
          # @return [Boolean] true if the +billing_plan_header+ element is present on the page
          def billing_plan_header?
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @note Defined as +link :start_your_free_trial+
          # Clicks +start_your_free_trial+
          def start_your_free_trial
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @example
          #   Gitlab::Page::Group::Settings::Billing.perform do |billing|
          #     expect(billing.start_your_free_trial_element).to exist
          #   end
          # @return [Watir::Link] The raw +Link+ element
          def start_your_free_trial_element
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @example
          #   Gitlab::Page::Group::Settings::Billing.perform do |billing|
          #     expect(billing).to be_start_your_free_trial
          #   end
          # @return [Boolean] true if the +start_your_free_trial+ element is present on the page
          def start_your_free_trial?
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @note Defined as +link :upgrade_to_premium+
          # Clicks +upgrade_to_premium+
          def upgrade_to_premium
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @example
          #   Gitlab::Page::Group::Settings::Billing.perform do |billing|
          #     expect(billing.upgrade_to_premium_element).to exist
          #   end
          # @return [Watir::Link] The raw +Link+ element
          def upgrade_to_premium_element
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @example
          #   Gitlab::Page::Group::Settings::Billing.perform do |billing|
          #     expect(billing).to be_upgrade_to_premium
          #   end
          # @return [Boolean] true if the +upgrade_to_premium+ element is present on the page
          def upgrade_to_premium?
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @note Defined as +link :upgrade_to_ultimate+
          # Clicks +upgrade_to_ultimate+
          def upgrade_to_ultimate
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @example
          #   Gitlab::Page::Group::Settings::Billing.perform do |billing|
          #     expect(billing.upgrade_to_ultimate_element).to exist
          #   end
          # @return [Watir::Link] The raw +Link+ element
          def upgrade_to_ultimate_element
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @example
          #   Gitlab::Page::Group::Settings::Billing.perform do |billing|
          #     expect(billing).to be_upgrade_to_ultimate
          #   end
          # @return [Boolean] true if the +upgrade_to_ultimate+ element is present on the page
          def upgrade_to_ultimate?
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @note Defined as +strong :subscription_header+
          # @return [String] The text content or value of +subscription_header+
          def subscription_header
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @example
          #   Gitlab::Page::Group::Settings::Billing.perform do |billing|
          #     expect(billing.subscription_header_element).to exist
          #   end
          # @return [Watir::Strong] The raw +Strong+ element
          def subscription_header_element
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @example
          #   Gitlab::Page::Group::Settings::Billing.perform do |billing|
          #     expect(billing).to be_subscription_header
          #   end
          # @return [Boolean] true if the +subscription_header+ element is present on the page
          def subscription_header?
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @note Defined as +button :refresh_seats+
          # Clicks +refresh_seats+
          def refresh_seats
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @example
          #   Gitlab::Page::Group::Settings::Billing.perform do |billing|
          #     expect(billing.refresh_seats_element).to exist
          #   end
          # @return [Watir::Button] The raw +Button+ element
          def refresh_seats_element
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @example
          #   Gitlab::Page::Group::Settings::Billing.perform do |billing|
          #     expect(billing).to be_refresh_seats
          #   end
          # @return [Boolean] true if the +refresh_seats+ element is present on the page
          def refresh_seats?
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @note Defined as +p :seats_in_subscription+
          # @return [String] The text content or value of +seats_in_subscription+
          def seats_in_subscription
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @example
          #   Gitlab::Page::Group::Settings::Billing.perform do |billing|
          #     expect(billing.seats_in_subscription_element).to exist
          #   end
          # @return [Watir::P] The raw +P+ element
          def seats_in_subscription_element
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @example
          #   Gitlab::Page::Group::Settings::Billing.perform do |billing|
          #     expect(billing).to be_seats_in_subscription
          #   end
          # @return [Boolean] true if the +seats_in_subscription+ element is present on the page
          def seats_in_subscription?
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @note Defined as +p :seats_currently_in_use+
          # @return [String] The text content or value of +seats_currently_in_use+
          def seats_currently_in_use
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @example
          #   Gitlab::Page::Group::Settings::Billing.perform do |billing|
          #     expect(billing.seats_currently_in_use_element).to exist
          #   end
          # @return [Watir::P] The raw +P+ element
          def seats_currently_in_use_element
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @example
          #   Gitlab::Page::Group::Settings::Billing.perform do |billing|
          #     expect(billing).to be_seats_currently_in_use
          #   end
          # @return [Boolean] true if the +seats_currently_in_use+ element is present on the page
          def seats_currently_in_use?
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @note Defined as +link :see_seats_usage+
          # Clicks +see_seats_usage+
          def see_seats_usage
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @example
          #   Gitlab::Page::Group::Settings::Billing.perform do |billing|
          #     expect(billing.see_seats_usage_element).to exist
          #   end
          # @return [Watir::Link] The raw +Link+ element
          def see_seats_usage_element
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @example
          #   Gitlab::Page::Group::Settings::Billing.perform do |billing|
          #     expect(billing).to be_see_seats_usage
          #   end
          # @return [Boolean] true if the +see_seats_usage+ element is present on the page
          def see_seats_usage?
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @note Defined as +p :max_seats_used+
          # @return [String] The text content or value of +max_seats_used+
          def max_seats_used
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @example
          #   Gitlab::Page::Group::Settings::Billing.perform do |billing|
          #     expect(billing.max_seats_used_element).to exist
          #   end
          # @return [Watir::P] The raw +P+ element
          def max_seats_used_element
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @example
          #   Gitlab::Page::Group::Settings::Billing.perform do |billing|
          #     expect(billing).to be_max_seats_used
          #   end
          # @return [Boolean] true if the +max_seats_used+ element is present on the page
          def max_seats_used?
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @note Defined as +p :seats_owed+
          # @return [String] The text content or value of +seats_owed+
          def seats_owed
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @example
          #   Gitlab::Page::Group::Settings::Billing.perform do |billing|
          #     expect(billing.seats_owed_element).to exist
          #   end
          # @return [Watir::P] The raw +P+ element
          def seats_owed_element
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @example
          #   Gitlab::Page::Group::Settings::Billing.perform do |billing|
          #     expect(billing).to be_seats_owed
          #   end
          # @return [Boolean] true if the +seats_owed+ element is present on the page
          def seats_owed?
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @note Defined as +p :subscription_start_date+
          # @return [String] The text content or value of +subscription_start_date+
          def subscription_start_date
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @example
          #   Gitlab::Page::Group::Settings::Billing.perform do |billing|
          #     expect(billing.subscription_start_date_element).to exist
          #   end
          # @return [Watir::P] The raw +P+ element
          def subscription_start_date_element
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @example
          #   Gitlab::Page::Group::Settings::Billing.perform do |billing|
          #     expect(billing).to be_subscription_start_date
          #   end
          # @return [Boolean] true if the +subscription_start_date+ element is present on the page
          def subscription_start_date?
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @note Defined as +p :subscription_end_date+
          # @return [String] The text content or value of +subscription_end_date+
          def subscription_end_date
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @example
          #   Gitlab::Page::Group::Settings::Billing.perform do |billing|
          #     expect(billing.subscription_end_date_element).to exist
          #   end
          # @return [Watir::P] The raw +P+ element
          def subscription_end_date_element
            # This is a stub, used for indexing. The method is dynamically generated.
          end

          # @example
          #   Gitlab::Page::Group::Settings::Billing.perform do |billing|
          #     expect(billing).to be_subscription_end_date
          #   end
          # @return [Boolean] true if the +subscription_end_date+ element is present on the page
          def subscription_end_date?
            # This is a stub, used for indexing. The method is dynamically generated.
          end
        end
      end
    end
  end
end