blob: 61b7d3149a0d9ffe72aac9658a738dfcf01fa71e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
class Ticket622TestCase extends SeleniumTestCase
{
function test()
{
$base="ctl0_Content_";
$this->open('tickets/index.php?page=Ticket622');
$this->assertTitle("Verifying Ticket 622");
$this->click($base.'ctl0');
$this->pause(800);
$this->assertAttribute($base.'ALB@style','null');
$this->assertAttribute('css=span#acb span@style','null');
$this->assertAttribute('css=span#arb span@style','null');
}
}
?>
|