From 6bd3d78dd2d648ab9d329abcbb09de33dd6fb6c8 Mon Sep 17 00:00:00 2001 From: Nicolai Ehrhardt <245527909+predictor2718@users.noreply.github.com> Date: Sun, 5 Apr 2026 21:11:08 +0200 Subject: [PATCH] Fix #20064 - Update Selenium test selector for sliding message element Signed-off-by: Nicolai Ehrhardt <245527909+predictor2718@users.noreply.github.com> --- tests/end-to-end/Database/ProceduresTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/end-to-end/Database/ProceduresTest.php b/tests/end-to-end/Database/ProceduresTest.php index 00a078ff79..856dc9e9ac 100644 --- a/tests/end-to-end/Database/ProceduresTest.php +++ b/tests/end-to-end/Database/ProceduresTest.php @@ -221,10 +221,10 @@ class ProceduresTest extends TestBase $this->byId('routinesExecuteModalExecuteButton')->click(); $this->waitAjax(); - $this->waitForElement('cssSelector', 'span#PMA_slidingMessage table tbody'); - $this->waitUntilElementIsVisible('cssSelector', 'span#PMA_slidingMessage', 30); + $this->waitForElement('cssSelector', '#PMA_slidingMessage table tbody'); + $this->waitUntilElementIsVisible('cssSelector', '#PMA_slidingMessage', 30); sleep(2);// Give more chances to the JS effect to finish - $head = $this->byCssSelector('span#PMA_slidingMessage table tbody')->getText(); + $head = $this->byCssSelector('#PMA_slidingMessage table tbody')->getText(); self::assertSame("outp\n" . $length, $head); } }