summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/active-controls/tests/ActiveLinkButtonTestCase.php
blob: 88cdf15e5f68a0581a18538ce2545b63ec535623 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

class ActiveLinkButtonTestCase extends PradoGenericSeleniumTest
{
	function test()
	{
		$this->open("active-controls/index.php?page=ActiveLinkButtonTest");
		$this->verifyTextPresent("TActiveLinkButton Functional Test");
		$this->assertText("label1", "Label 1");
		$this->click("button2");
		$this->pause(800);
		$this->assertText("label1", "Button 1 was clicked using callback!");
	}
}