summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets
diff options
context:
space:
mode:
authorFabio Bas <ctrlaltca@gmail.com>2014-04-21 12:09:51 +0200
committerFabio Bas <ctrlaltca@gmail.com>2014-04-21 12:09:51 +0200
commitb438554637e082544d2288e5c3654448c2f53683 (patch)
treefc248b6b1445f73a52726f89d8ac47026ba47585 /tests/FunctionalTests/tickets
parentc66097eac2c2691bf0047829275962ec0bf2b41f (diff)
Ported 2 failing functionaltests
Diffstat (limited to 'tests/FunctionalTests/tickets')
-rwxr-xr-xtests/FunctionalTests/tickets/tests/Ticket722TestCase.php25
1 files changed, 15 insertions, 10 deletions
diff --git a/tests/FunctionalTests/tickets/tests/Ticket722TestCase.php b/tests/FunctionalTests/tickets/tests/Ticket722TestCase.php
index 268a3df4..dfa93089 100755
--- a/tests/FunctionalTests/tickets/tests/Ticket722TestCase.php
+++ b/tests/FunctionalTests/tickets/tests/Ticket722TestCase.php
@@ -7,21 +7,26 @@ class Ticket722TestCase extends PradoGenericSelenium2Test
$this->url('tickets/index.php?page=Ticket722');
$this->assertEquals($this->title(), "Verifying Ticket 722");
- $this->assertText($base.'InPlaceTextBox__label', 'Editable Text');
- $this->byId($base.'InPlaceTextBox__label')->click();
+ $label = $this->byID("{$base}InPlaceTextBox__label");
+ $this->assertEquals('Editable Text', $label->text());
+ $label->click();
$this->pause(800);
- $this->assertVisible($base.'InPlaceTextBox');
+
+ $textbox = $this->byID("{$base}InPlaceTextBox");
+ $this->assertTrue($textbox->displayed());
+
$this->type($base.'InPlaceTextBox',"Prado");
$this->pause(800);
- $this->assertNotVisible($base.'InPlaceTextBox');
- $this->assertText($base.'InPlaceTextBox__label', 'Prado');
- $this->byId($base.'ctl0')->click();
- $this->pause(800);
- $this->assertText($base.'InPlaceTextBox__label', 'Prado [Read Only]');
- $this->byId($base.'InPlaceTextBox__label')->click();
+ $this->assertFalse($textbox->displayed());
+ $this->assertEquals('Prado', $label->text());
+
+ $this->byId("{$base}ctl0")->click();
$this->pause(800);
- $this->assertNotVisible($base.'InPlaceTextBox');
+ $this->assertEquals('Prado [Read Only]', $label->text());
+ $label->click();
+ $this->pause(800);
+ $this->assertFalse($textbox->displayed());
}
} \ No newline at end of file