debian-mirror-gitlab/qa/qa/page/trials/new.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
401 B
Ruby
Raw Normal View History

2021-06-08 01:23:25 +05:30
# frozen_string_literal: true
module QA
module Page
module Trials
class New < Chemlab::Page
path '/-/trials/new'
2022-03-02 08:16:31 +05:30
text_field :first_name
text_field :last_name
text_field :company_name
select :number_of_employees
text_field :telephone_number
select :country
2022-05-07 20:08:51 +05:30
select :state
2022-03-02 08:16:31 +05:30
button :continue
2021-06-08 01:23:25 +05:30
end
end
end
end