summaryrefslogtreecommitdiff
path: root/qa/qa/page/trials/new.rb
blob: 6e9d7fce688472222f55c65348d50378582b930f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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
        button :continue
      end
    end
  end
end