summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests/Ticket698TestCase.php
blob: 8f58a320de5adcdbeb62991bf77adfd5972b8572 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
class Ticket698TestCase extends PradoGenericSeleniumTest
{
	function test()
	{
		$base = 'ctl0_Content_';
		$this->open('tickets/index.php?page=Ticket698');
		$this->assertTitle("Verifying Ticket 698");
		
		$this->click($base."switchContentTypeButton");
		$this->pause(800);
		$this->assertVisible($base."EditHtmlTextBox");
		$this->pause(800);
		$this->click($base."switchContentTypeButton");
		$this->pause(1000);
		$this->assertNotVisible($base."EditHtmlTextBox");
	}

}