1 |
<?php |
2 |
/** |
3 |
* |
4 |
* |
5 |
* @package openfoncier |
6 |
* @version SVN : $Id$ |
7 |
*/ |
8 |
|
9 |
// |
10 |
require_once "base.php"; |
11 |
|
12 |
/** |
13 |
* |
14 |
*/ |
15 |
class ServiceConsulte extends BaseTestCase { |
16 |
|
17 |
/** |
18 |
* |
19 |
*/ |
20 |
public function testDemandesAvisPassees() { |
21 |
// |
22 |
$this->login("consu", "consu"); |
23 |
|
24 |
// |
25 |
$this->clickAndWait("link=Demandes passées"); |
26 |
$this->verifyNoErrors(); |
27 |
|
28 |
// |
29 |
$this->clickAndWait("link=AZ0130551200001P0"); |
30 |
$this->verifyNoErrors(); |
31 |
$this->verifyTextPresent("Demandes d'avis > passées"); |
32 |
// $this->click("//div[@id='portlet-actions']/ul/li/a/span"); |
33 |
// $this->waitForPopUp("", "30000"); |
34 |
// $this->selectPopUp(); |
35 |
// sleep(5); |
36 |
// $this->verifyNoErrors(); |
37 |
// $this->verifyTextPresent("Avis solicité pour conformité"); |
38 |
// $this->verifyTextPresent("Direction de l'Eau et de l'Assainissement"); |
39 |
// $this->close(); |
40 |
// $this->selectWindow(); |
41 |
// |
42 |
$this->logout(); |
43 |
} |
44 |
|
45 |
} |
46 |
?> |