summaryrefslogtreecommitdiff
path: root/qa/qa/page/trials/new.rb
blob: cd3b145a89ea3d7e79af98eb89661f336ee46d54 (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, id: 'state'
        button :continue
      end
    end
  end
end