From b3c782faadcbd47a723b5cd0b08559e5964f37cf Mon Sep 17 00:00:00 2001 From: Fabio Bas Date: Wed, 12 Feb 2014 00:26:16 +0100 Subject: Fixed TAutoComplete --- .../active-controls/tests/AutoCompleteTestCase.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests/FunctionalTests/active-controls') diff --git a/tests/FunctionalTests/active-controls/tests/AutoCompleteTestCase.php b/tests/FunctionalTests/active-controls/tests/AutoCompleteTestCase.php index 2033d6ff..94cae5f2 100755 --- a/tests/FunctionalTests/active-controls/tests/AutoCompleteTestCase.php +++ b/tests/FunctionalTests/active-controls/tests/AutoCompleteTestCase.php @@ -10,13 +10,13 @@ class AutoCompleteTestCase extends PradoGenericSeleniumTest $this->assertText("label1", "Label 1"); $this->type("textbox3", 'a'); - $this->runScript('Prado.Registry.get(\'textbox3\').onKeyPress({})'); + $this->runScript('Prado.Registry[\'textbox3\'].onKeyPress({})'); $this->pause(500); $this->verifyTextPresent('Andorra'); $this->assertText("label1", "suggestion for a"); $this->type("textbox3", 'au'); - $this->runScript('Prado.Registry.get(\'textbox3\').onKeyPress({})'); + $this->runScript('Prado.Registry[\'textbox3\'].onKeyPress({})'); $this->pause(500); $this->verifyTextPresent('Australia'); $this->assertText("label1", "suggestion for au"); @@ -26,14 +26,14 @@ class AutoCompleteTestCase extends PradoGenericSeleniumTest $this->assertText("label1", "Label 1: Austria"); $this->type("textbox2", "cu"); - $this->runScript('Prado.Registry.get(\'textbox2\').onKeyPress({})'); + $this->runScript('Prado.Registry[\'textbox2\'].onKeyPress({})'); $this->pause(500); $this->click('css=#textbox2_result ul li'); $this->pause(500); $this->assertText("label1", "Label 1: Cuba"); $this->type("textbox2", "Cuba,me"); - $this->runScript('Prado.Registry.get(\'textbox2\').onKeyPress({})'); + $this->runScript('Prado.Registry[\'textbox2\'].onKeyPress({})'); $this->pause(500); $this->click('css=#textbox2_result ul li'); $this->pause(500); -- cgit v1.2.3