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

new.rb « trials « page « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 40f593a7aa776691e5eaf61d2b994d21b961b417 (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 QA
  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