debian-mirror-gitlab/qa/lib/gitlab/page/trials/new.rb
2023-04-23 21:23:45 +05:30

20 lines
405 B
Ruby

# 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