Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
NavigateMenuTest.php
Go to the documentation of this file.
1 <?php
8 
9 use Magento\Mtf\TestCase\Injectable;
10 use Magento\Backend\Test\Page\Adminhtml\Dashboard;
11 
20 class NavigateMenuTest extends Injectable
21 {
22  /* tags */
23  const MVP = 'no';
24  /* end tags */
25 
34  public function test(Dashboard $dashboard, $menuItem, $waitMenuItemNotVisible = true)
35  {
36  $dashboard->open();
37  $dashboard->getMenuBlock()->navigate($menuItem, $waitMenuItemNotVisible);
38  }
39 }
test(Dashboard $dashboard, $menuItem, $waitMenuItemNotVisible=true)