blob: 0d3e2797c220dc14098e5741b0db92e316e61e34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
class QuickstartPanelTestCase extends PradoGenericSelenium2Test
{
function test ()
{
$this->url("../../demos/quickstart/index.php?page=Controls.Samples.TPanel.Home&notheme=true&lang=en");
$this->assertContains("This is panel content with", $this->source());
$this->assertElementPresent("//span[text()='label']");
$this->assertContains("grouping text", $this->source());
$this->byXPath("//input[@name='ctl0\$body\$ctl17']")->click();
$this->assertNotContains("You have clicked on 'button2'.", $this->source());
$this->byXPath("//input[@type='submit' and @value='button2']")->click();
$this->assertContains("You have clicked on 'button2'.", $this->source());
}
}
|