blob: 7f9c23f3cd3eb50b85535be5acb3f06764f39713 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
class Ticket886TestCase extends PradoGenericSelenium2Test
{
function test()
{
$this->url('tickets/index.php?page=Ticket886');
$this->assertEquals($this->title(), "Verifying Ticket 886");
$base = 'ctl0_Content_';
$this->byId($base.'SendButton')->click();
$this->assertContains(date('Y').'-01-01', $this->source());
}
}
|