diff --git a/tests/behat/src/CmsFormsContext.php b/tests/behat/src/CmsFormsContext.php index f8f185728..0e01e9503 100644 --- a/tests/behat/src/CmsFormsContext.php +++ b/tests/behat/src/CmsFormsContext.php @@ -241,7 +241,7 @@ JS; if (null === $element) { // If it can't find the exact name, find one that starts with the phrase // Helpful for "Insert link" which has a conditional label for keyboard shortcut - $xpath = "//*[@aria-label^='" . $button . "']"; + $xpath = "//*[starts-with(@aria-label, '" . $button . "')]"; $element = $session->getPage()->find('xpath', $xpath); if (null === $element) {