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

select.rb « trials « page « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 39ef604a78143f526f9fdff66afa3afa0cc1b476 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

module QA
  module Page
    module Trials
      class Select < Chemlab::Page
        path '/-/trials/select'

        select :subscription_for
        text_field :new_group_name
        button :start_your_free_trial
        radio :trial_company
        radio :trial_individual
      end
    end
  end
end