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

highlight_content_helper.rb « features « helpers « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f55dd213061a32dde057c81504d6dc0983d98355 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

# This helper allows you to reliably highlight text within a given Element by
# simulating mouse actions.
#
module Features
  module HighlightContentHelper
    def highlight_content(node)
      height = node.native.rect.height
      width = node.native.rect.width
      page.driver.browser.action
        .move_to(node.native, -(width / 2), -(height / 2))
        .click_and_hold
        .move_by(width, height)
        .release
        .perform
    end
  end
end