blob: 0d0fe3d2d536415cd61a86217b1a09748287cb88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
class Ticket622TestCase extends PradoGenericSeleniumTest
{
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',';');
$this->assertAttribute('css=span#acb span@style', ';');
$this->assertAttribute('css=span#arb span@style', ';');
}
}
|