MDL-72481 admin: Update behat selector

The more menu can be a tablist or a manubar

Co-authored-by: Shamim Rezaie <[email protected]>
This commit is contained in:
Sujith Haridasan
2022-03-15 12:48:22 +11:00
committed by Shamim Rezaie
co-authored by Shamim Rezaie
parent 6937d87ddd
commit af496f2c85
+1 -1
View File
@@ -1056,7 +1056,7 @@ class behat_navigation extends behat_base {
$tabxpath = '//ul[@role=\'tablist\']/li/a[contains(normalize-space(.), ' . $tabname . ')]';
$menubarxpath = '//ul[@role=\'menubar\']/li/a[contains(normalize-space(.), ' . $tabname . ')]';
$linkname = behat_context_helper::escape(get_string('moremenu'));
$menubarmorexpath = '//ul[@role=\'menubar\']/li/a[contains(normalize-space(.), ' . $linkname . ')]';
$menubarmorexpath = '//ul[contains(@class,\'more-nav\')]/li/a[contains(normalize-space(.), ' . $linkname . ')]';
$tabnode = $this->getSession()->getPage()->find('xpath', $tabxpath);
$menunode = $this->getSession()->getPage()->find('xpath', $menubarxpath);
$menubuttons = $this->getSession()->getPage()->findAll('xpath', $menubarmorexpath);