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

free_trial.rb « alert « page « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4a48d4ca277d65f38b9684be4f1fcc51a7f7faca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module QA
  module Page
    module Alert
      class FreeTrial < Chemlab::Page
        # TODO: Supplant with data-qa-selectors
        h4 :trial_activated_message, class: 'gl-banner-title'
      end
    end
  end
end