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

billing.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: 24d327502f8d14882c5dd2d36eb281a378522587 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module Gitlab
  module Page
    module Group
      module Settings
        class Billing < Chemlab::Page
          # TODO: Supplant with data-qa-selectors
          h4 :billing_plan_header, css: 'div.billing-plan-header h4'

          link :start_your_free_trial

          link :upgrade_to_premium, css: '[data-testid="plan-card-premium"] a.billing-cta-purchase-new'
          link :upgrade_to_ultimate, css: '[data-testid="plan-card-ultimate"] a.billing-cta-purchase-new'
        end
      end
    end
  end
end