Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Desportes <williamdes@wdes.fr>2021-02-19 02:49:20 +0300
committerWilliam Desportes <williamdes@wdes.fr>2021-02-19 02:49:20 +0300
commitd71aa7682bce6fb804eb3b00d7be80767eeb2566 (patch)
tree6610952611f0604452269c579fdd73811af8c0d1 /test/selenium
parent147ada050f360c0e2caa37d9fe89262086bc45b5 (diff)
Add some wait time for the procedure result to show on Selenium tests
Ref: 08cf4aeb5e26d85c61239b279328d6e1d6e32fd1 Signed-off-by: William Desportes <williamdes@wdes.fr>
Diffstat (limited to 'test/selenium')
-rw-r--r--test/selenium/Database/ProceduresTest.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/selenium/Database/ProceduresTest.php b/test/selenium/Database/ProceduresTest.php
index 55412eb968..7df8f4639d 100644
--- a/test/selenium/Database/ProceduresTest.php
+++ b/test/selenium/Database/ProceduresTest.php
@@ -256,6 +256,7 @@ class ProceduresTest extends TestBase
'span#PMA_slidingMessage table tbody'
);
$this->waitUntilElementIsVisible('cssSelector', 'span#PMA_slidingMessage', 30);
+ sleep(2);// Give more chances to the JS effect to finish
$head = $this->byCssSelector('span#PMA_slidingMessage table tbody')->getText();
$this->assertEquals("outp\n" . $length, $head);
}