Sha256: f3dd696983f4bec3a98e803cb853d0a4ec71c8ec7ef703b9cb4f67cc63731831

Contents?: true

Size: 906 Bytes

Versions: 5

Compression:

Stored size: 906 Bytes

Contents

# frozen_string_literal: true

# Helpers that get automatically included in feature specs.
module Decidim::FeatureTestHelpers
  def click_submenu_link(text)
    within ".secondary-nav--subnav" do
      click_link text
    end
  end

  def within_user_menu
    within ".topbar__user__logged" do
      find("a", text: user.name).hover
      yield
    end
  end

  def within_language_menu
    within ".topbar__dropmenu.language-choose" do
      find("ul.dropdown.menu").hover
      yield
    end
  end

  def stripped(text)
    Nokogiri::HTML(text).text
  end

  def within_flash_messages
    within ".flash" do
      yield
    end
  end

  def expect_user_logged
    expect(page).to have_css(".topbar__user__logged")
  end

  def have_admin_callout(text)
    have_selector(".callout--full", text: text)
  end
end

RSpec.configure do |config|
  config.include Decidim::FeatureTestHelpers, type: :feature
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
decidim-dev-0.8.4 lib/decidim/dev/test/rspec_support/helpers.rb
decidim-dev-0.8.3 lib/decidim/dev/test/rspec_support/helpers.rb
decidim-dev-0.8.2 lib/decidim/dev/test/rspec_support/helpers.rb
decidim-dev-0.8.1 lib/decidim/dev/test/rspec_support/helpers.rb
decidim-dev-0.8.0 lib/decidim/dev/test/rspec_support/helpers.rb