Files
openproject/spec/support/pages/admin/custom_actions/form.rb
T
Alexander Brandon Coles e8767481e9 [#70166] Fix accessibility errors found by ERB Lint (#21503)
* Fix GitHub/NoTitleAttribute, LinkHasHref errors

- Replaces `title` attribute with `aria-label` for interactive elements.
- Removes `title` from non-interactive elements.
- Converts `<a>` tags without proper `href` to `<button>` elements,
  using Primer `Button`/`IconButton` where possible.

# Conflicts:
#	app/views/custom_fields/_custom_options.html.erb
#	spec/features/admin/custom_fields/shared_custom_field_expectations.rb
#	spec/features/admin/custom_fields/work_packages/list_spec.rb

* Fix Autocomplete missing errors

* Fix GitHub/NoPositiveTabIndex errors

Removes all positive `tabindex` values.

* Fix Rails/LinkToBlank errors

* Replace toast with Primer Banner on LDAP form

* Add frozen_string_literal

* Ignore erb lint for deprecated files

* Fix linting errors in repository module

* Fix linting errors in budgets and custom actions

* Fix linting errors in member form and 2fa

* Fix linting errors in mcost types and wiki help and storages

* Fix linting errors in multi select filters, ifc viewer, and unsupported browser banner

* Fix failing spec

* Use Primer banner instead of op-toast where ever it is possible

* Use octicon instead of op_icon

* Fix failing tests

* Use no-decoration-on-hover for button links and change the button with only an icon to primer icon button

* Keep webhook response modal activation selector class-based

* use icon button for edit of hourly rate

---------

Co-authored-by: Behrokh Satarnejad <b.satarnejad@openproject.com>
2026-05-07 10:31:10 +02:00

147 lines
4.6 KiB
Ruby

# frozen_string_literal: true
#-- copyright
# OpenProject is an open source project management software.
# Copyright (C) the OpenProject GmbH
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License version 3.
#
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
# Copyright (C) 2006-2013 Jean-Philippe Lang
# Copyright (C) 2010-2013 the ChiliProject Team
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# See COPYRIGHT and LICENSE files for more details.
#++
require "support/pages/page"
require "support/components/autocompleter/ng_select_autocomplete_helpers"
module Pages
module Admin
module CustomActions
class Form < ::Pages::Page
include ::Components::Autocompleter::NgSelectAutocompleteHelpers
def set_name(name)
fill_in "Name", with: name
end
def set_description(description)
fill_in "Description", with: description
end
def add_action(name, value)
retry_block do
select name, from: "Add action"
within "#custom-actions-form--active-actions" do
expect(page).to have_css(".form--label", text: name)
end
end
set_action_value(name, value)
end
def remove_action(name)
within "#custom-actions-form--active-actions" do
find(".form--field", text: name)
.click_on accessible_name: "Close"
end
end
def expect_selected_option(value)
expect(page).to have_css(".ng-value-label", text: value)
end
def expect_action(name, value)
value = "" if value.nil?
within "#custom-actions-form--actions" do
if value.is_a?(Array)
value.each { |name| expect_selected_option(name.to_s) }
else
element = find("input[name='custom_action[actions][#{name}]']", visible: :all)
expect(element.value).to eq value.to_s
end
end
end
def set_action(name, value)
set_action_value(name, value)
rescue Capybara::ElementNotFound
add_action(name, value)
end
def set_condition(name, value)
Array(value).each do |val|
retry_block do
set_condition_value(name, val)
within "#custom-actions-form--conditions" do
expect_selected_option val
end
end
end
end
private
def set_action_value(name, value)
field = find("#custom-actions-form--active-actions .form--field", text: name, wait: 5)
set_field_value(field, name, value)
end
def set_condition_value(name, value)
field = find("#custom-actions-form--conditions .form--field", text: name, wait: 5)
set_field_value(field, name, value)
end
def set_field_value(field, name, value)
autocomplete = false
Array(value).each do |val|
within field do
if has_selector?(".form--selected-value--container", wait: 0)
find(".form--selected-value--container").click
autocomplete = true
elsif autocomplete?
autocomplete = true
end
target = page.find_field(name)
has_no_css?(".ng-spinner-loader") # wait for possible async loading of options for ng-select
target.send_keys val
end
if autocomplete
has_no_css?(".ng-spinner-loader") # wait for possible async loading of options for ng-select
dropdown_el = find(".ng-option", text: val, wait: 5)
scroll_to_and_click(dropdown_el)
end
end
end
def autocomplete?
has_selector?(".ng-input")
end
end
end
end
end