blob: 841de5aa7154a45655d01df611ffaf1cc3460dda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
class DelayedCallbackTestCase extends PradoGenericSeleniumTest
{
function test()
{
$this->open("active-controls/index.php?page=DelayedCallback");
$this->verifyTextPresent("Delayed Callback Test");
$this->assertText("status", "");
$this->click("button1");
$this->click("button2");
$this->pause("5000");
$this->assertText("status", "Callback 1 returned after 4s");
$this->pause("3000");
$this->assertText("status", "Callback 2 delayed 2s");
}
}
|