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

show.rb « artifact « project « page « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 437363d4a982ae2d5820f3e3bd1131f9c928bf57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module QA
  module Page
    module Project
      module Artifact
        class Show < QA::Page::Base
          view 'app/views/projects/artifacts/_tree_directory.html.haml' do
            element :directory_name_link
          end

          def go_to_directory(name)
            click_element(:directory_name_link, directory_name: name)
          end
        end
      end
    end
  end
end