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

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

module QA
  module Mobile
    module Page
      module Base
        prepend Support::Page::Logging

        def fill_element(name, content)
          # We need to bypass click_element_cooridinates as it does not work on mobile devices
          find_element(name).set(content)
        end
      end
    end
  end
end