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