HEX
Server: LiteSpeed
System: Linux server.zepintelhosting.com 4.18.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
User: enamadmin (1026)
PHP: 8.2.30
Disabled: exec,system,passthru,shell_exec,proc_open,popen,apache_child_terminate
Upload Files
File: /home/enamadmin/public_html/aaelearningb/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