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

todos.rb « dashboard « page « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a65bba9ac390c1bf9559ef2f9124eee4962b4c1e (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# frozen_string_literal: true

module QA
  module Page
    module Dashboard
      class Todos < Page::Base
        include Page::Component::Snippet

        view 'app/views/dashboard/todos/index.html.haml' do
          element :todos_list_container, required: true
          element :group_dropdown
        end

        view 'app/views/dashboard/todos/_todo.html.haml' do
          element :todo_item_container
          element :todo_action_name_content
          element :todo_target_title_content
          element :todo_author_name_content
        end

        view 'app/helpers/dropdowns_helper.rb' do
          element :dropdown_input_field
          element :dropdown_list_content
        end

        def has_todo_list?
          has_element?(:todo_item_container)
        end

        def has_no_todo_list?
          has_no_element?(:todo_item_container)
        end

        def filter_todos_by_group(group)
          click_element :group_dropdown

          fill_element(:dropdown_input_field, group.path)

          within_element(:dropdown_list_content) do
            click_on group.path
          end

          wait_for_requests
        end

        def has_latest_todo_with_author?(author:, action:)
          content = { selector: :todo_author_name_content, text: author }
          has_latest_todo_with_content?(action, **content)
        end

        def has_latest_todo_with_title?(title:, action:)
          content = { selector: :todo_target_title_content, text: title }
          has_latest_todo_with_content?(action, **content)
        end

        def click_todo_with_content(content)
          click_element(:todo_item_container, text: content)
        end

        private

        def has_latest_todo_with_content?(action, **kwargs)
          within_element(:todos_list_container) do
            within_element_by_index(:todo_item_container, 0) do
              has_element?(:todo_action_name_content, text: action) &&
                has_element?(kwargs[:selector], text: kwargs[:text])
            end
          end
        end
      end
    end
  end
end