blob: 60d68d3309a3d3a4269b67ea6052b6ecef43bab5 (
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
30
31
32
33
34
35
36
37
|
<?php
class Repeater3TestCase extends SeleniumTestCase
{
function test()
{
$this->open("../../demos/quickstart/index.php?page=Controls.Samples.TRepeater.Sample3&notheme=true&lang=en", "");
// verify product name is required
$this->verifyNotVisible('ctl0_body_Repeater_ctl0_ctl0');
$this->type("ctl0_body_Repeater_ctl0_ProductName", "");
$this->click("//input[@type='submit' and @value='Save']", "");
$this->verifyVisible('ctl0_body_Repeater_ctl0_ctl0');
// verify product price is of proper format
$this->verifyNotVisible('ctl0_body_Repeater_ctl0_ctl1');
$this->type("ctl0_body_Repeater_ctl0_ProductPrice", "abc");
$this->click("//input[@type='submit' and @value='Save']", "");
$this->verifyVisible('ctl0_body_Repeater_ctl0_ctl1');
// perform postback
$this->click("ctl0_body_Repeater_ctl0_ProductImported",'');
$this->type("ctl0_body_Repeater_ctl0_ProductName", "Mother Board");
$this->type("ctl0_body_Repeater_ctl0_ProductPrice", "99.01");
$this->select("ctl0_body_Repeater_ctl3_ProductCategory", "label=Accessories");
$this->clickAndWait("//input[@type='submit' and @value='Save']", "");
$this->verifyNotVisible('ctl0_body_Repeater_ctl0_ctl0');
$this->verifyNotVisible('ctl0_body_Repeater_ctl0_ctl1');
// verify postback results
$this->verifyElementPresent("//td[text()='Mother Board']",'');
$this->verifyElementNotPresent("//td[text()='Input Devices']",'');
$this->verifyElementPresent("//td[text()='99.01']",'');
}
}
?>
|