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

edit.rb « snippet « dashboard « page « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7802a680c25d8d6f2e376d4c000309b677bf4654 (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 Dashboard
      module Snippet
        class Edit < Page::Base
          view 'app/views/shared/snippets/_form.html.haml' do
            element :submit_button
          end

          view 'app/assets/javascripts/snippets/components/edit.vue' do
            element :submit_button
          end

          def add_to_file_content(content)
            finished_loading?
            text_area.set content
            text_area.has_text?(content) # wait for changes to take effect
          end

          def change_visibility_to(visibility_type)
            choose(visibility_type)
          end

          def save_changes
            click_element(:submit_button, Page::Dashboard::Snippet::Show)
          end

          private

          def text_area
            find('#editor textarea', visible: false)
          end
        end
      end
    end
  end
end