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

welcome.rb « registration « page « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bf7b970f12ebf7fa5bc23826420285266bc9865b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# frozen_string_literal: true

module QA
  module Page
    module Registration
      class Welcome < Page::Base
        view 'app/views/registrations/welcome/show.html.haml' do
          element :get_started_button
          element :role_dropdown
        end

        def has_get_started_button?(wait: Capybara.default_max_wait_time)
          has_element?(:get_started_button, wait: wait)
        end

        def select_role(role)
          select_element(:role_dropdown, role)
        end

        def choose_setup_for_just_me_if_available
          # Only implemented in EE
        end

        def choose_create_a_new_project_if_available
          # Only implemented in EE
        end

        def click_get_started_button
          Support::Retrier.retry_until do
            click_element :get_started_button
            has_no_element?(:get_started_button)
          end
        end
      end
    end
  end
end

QA::Page::Registration::Welcome.prepend_mod_with('Page::Registration::Welcome', namespace: QA)