summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests/Ticket719TestCase.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/FunctionalTests/tickets/tests/Ticket719TestCase.php')
-rwxr-xr-xtests/FunctionalTests/tickets/tests/Ticket719TestCase.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/FunctionalTests/tickets/tests/Ticket719TestCase.php b/tests/FunctionalTests/tickets/tests/Ticket719TestCase.php
index a984ee43..633820d2 100755
--- a/tests/FunctionalTests/tickets/tests/Ticket719TestCase.php
+++ b/tests/FunctionalTests/tickets/tests/Ticket719TestCase.php
@@ -5,11 +5,11 @@ class Ticket719TestCase extends PradoGenericSelenium2Test
function test()
{
$this->url("tickets/index.php?page=Ticket719");
- $this->assertTextPresent("Verifying Ticket 719");
+ $this->assertContains("Verifying Ticket 719", $this->source());
$base="ctl0_Content_";
- $this->click("${base}ctl2");
+ $this->byId("${base}ctl2")->click();
$this->pause(800);
$this->assertVisible("${base}ctl0", 'Required');
$this->assertVisible("${base}ctl1", 'Required');
@@ -17,26 +17,26 @@ class Ticket719TestCase extends PradoGenericSelenium2Test
$this->type("${base}autocomplete", 'f');
$this->runScript("Prado.Registry['${base}autocomplete'].onKeyPress({})");
$this->pause(500);
- $this->assertTextPresent('Finland');
+ $this->assertContains('Finland', $this->source());
$this->type("${base}autocomplete", 'fr');
$this->runScript("Prado.Registry['${base}autocomplete'].onKeyPress({})");
$this->pause(500);
- $this->assertTextPresent('French');
+ $this->assertContains('French', $this->source());
$this->type("${base}autocomplete", 'fra');
$this->runScript("Prado.Registry['${base}autocomplete'].onKeyPress({})");
$this->pause(500);
- $this->assertTextPresent('France');
+ $this->assertContains('France', $this->source());
- $this->click("css=#${base}autocomplete_result ul li");
+ $this->byCssSelector("#${base}autocomplete_result ul li")->click();
$this->pause(800);
$this->assertNotVisible("${base}ctl1");
$this->type("${base}textbox", "Prado");
$this->assertNotVisible("${base}ctl0");
- $this->click("${base}ctl2");
+ $this->byId("${base}ctl2")->click();
$this->pause(800);
$this->assertText("${base}Result", "TextBox Content : Prado -- Autocomplete Content :France");
}