blob: b51f55d326f976f94b549718b1ca7f17c5bfdaea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?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->assertEquals('', $this->byId($base.'ALB')->attribute('style'));
$this->assertEquals('', $this->byCssSelector('span#acb span')->attribute('style'));
$this->assertEquals('', $this->byCssSelector('span#arb span')->attribute('style'));
}
}
|