summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/validators/tests/CustomValidatorTestCase.php
blob: ca48a453bd9d875bf40a7cc444b1e3f3895f6f8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php

//New Test
class CustomValidatorTestCase extends PradoGenericSelenium2Test
{
	function test()
	{
		$base = "ctl0_Content_";
		$this->url("validators/index.php?page=CustomValidator");
		$this->assertContains("Prado CustomValidator Tests", $this->source());
		$this->assertNotVisible("{$base}validator1");

		$this->byXPath("//input[@type='submit' and @value='Test']")->click();
		$this->assertVisible("{$base}validator1");

		$this->type("{$base}text1", "Prado");
		$this->pause(250);
		$this->assertNotVisible("{$base}validator1");
		$this->type("{$base}text1", "Testing");
		$this->pause(250);
		$this->assertVisible("{$base}validator1");
		$this->type("{$base}text1", "Prado");
		$this->pause(250);
		$this->assertNotVisible("{$base}validator1");
		$this->byXPath("//input[@type='submit' and @value='Test']")->click();
		$this->assertNotVisible("{$base}validator1");

	}
}