* Navigate through the menu, retrying on failure.
(menus: string[])
| 553 | * Navigate through the menu, retrying on failure. |
| 554 | */ |
| 555 | async navigateMenus(menus: string[]): Promise<void> { |
| 556 | await this.navigateItems(menus, '[aria-label="Application Menu"]', async (selector) => { |
| 557 | await this.page.click(selector) |
| 558 | }) |
| 559 | } |
| 560 | |
| 561 | /** |
| 562 | * Open context menu on the specified selector. |
no test coverage detected