HEX
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/8.0.30
System: Linux multiplicar 3.10.0-1160.102.1.el7.x86_64 #1 SMP Tue Oct 17 15:42:21 UTC 2023 x86_64
User: root (0)
PHP: 8.0.30
Disabled: NONE
Upload Files
File: /var/www/html/sudameris.sumar.com.py-bk/lib/tests/behat/action_menu.feature
@core
Feature: Navigate action menu
  In order to navigate an action menu
  As a user
  I need to be able to use the keyboard

  @javascript
  Scenario: The menu does not close on keyboard navigation
    When I log in as "admin"
    # Click to open the user menu.
    And I click on ".usermenu a.toggle-display" "css_element" in the ".usermenu" "css_element"
    # The menu should now be visible.
    Then ".usermenu [role='menu']" "css_element" should be visible
    # Press down arrow.
    And I press the down key
    # The menu should still be visible.
    And ".usermenu [role='menu']" "css_element" should be visible

  @javascript
  Scenario: The menu closes when it clicked outside
    When I log in as "admin"
    # Click to open the user menu.
    And I click on ".usermenu a.toggle-display" "css_element" in the ".usermenu" "css_element"
    # The menu should now be visible.
    Then ".usermenu [role='menu']" "css_element" should be visible
    # Click outside the menu.
    And I click on "adminsearchquery" "field"
    # The menu should now be hidden.
    And ".usermenu [role='menu']" "css_element" should not be visible