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-17 19:22:11 +0300
committerWilliam Desportes <williamdes@wdes.fr>2021-02-17 19:22:11 +0300
commit08cf4aeb5e26d85c61239b279328d6e1d6e32fd1 (patch)
tree8da28beaa8512c14669ecc792629dd50516cebb0 /test/selenium
parentcf608f8ffbb23affdc2815c8625c0e25f2211a96 (diff)
Add some wait time to the Procedure result check
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 60dbb7b609..55412eb968 100644
--- a/test/selenium/Database/ProceduresTest.php
+++ b/test/selenium/Database/ProceduresTest.php
@@ -255,6 +255,7 @@ class ProceduresTest extends TestBase
'cssSelector',
'span#PMA_slidingMessage table tbody'
);
+ $this->waitUntilElementIsVisible('cssSelector', 'span#PMA_slidingMessage', 30);
$head = $this->byCssSelector('span#PMA_slidingMessage table tbody')->getText();
$this->assertEquals("outp\n" . $length, $head);
}