summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/README.txt
diff options
context:
space:
mode:
authorwei <>2006-01-06 22:21:07 +0000
committerwei <>2006-01-06 22:21:07 +0000
commit333eedb6eea18fdfb7bc0890cce1c30e6d44d363 (patch)
tree5b34d4181cd55e0219003d67d22a8438ac21b0d2 /tests/FunctionalTests/README.txt
parent16660934cc48f357b1322bce7869158db2f7cb58 (diff)
Diffstat (limited to 'tests/FunctionalTests/README.txt')
-rw-r--r--tests/FunctionalTests/README.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/FunctionalTests/README.txt b/tests/FunctionalTests/README.txt
index 189f69ad..06519092 100644
--- a/tests/FunctionalTests/README.txt
+++ b/tests/FunctionalTests/README.txt
@@ -48,11 +48,11 @@ class testMyButtonExample extends SeleniumTestCase
{
function setup()
{
- //initializes $this->Page to be MyButtonExample instance
- $this->initPage(__FILE__);
+ //get the test page url
+ $page = Prado::getApplication()->getTestPage(__FILE__);
//open MyButtonExample page
- $this->open($this->Page->Request->TestUrl);
+ $this->open($page);
}
function testButtonClick()