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

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

module Gitlab
  module Page
    module Trials
      class New < Chemlab::Page
        path '/-/trials/new'

        text_field :first_name
        text_field :last_name
        text_field :company_name
        select :number_of_employees
        text_field :telephone_number
        select :country
        select :state
        button :continue
      end
    end
  end
end