Merge pull request #8340 from open-sausages/pulls/4/no-that-button

Fix failing HTML button test step
This commit is contained in:
Robbie Averill 2018-08-23 11:36:53 +12:00 committed by GitHub
commit f0e54363ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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) {