Skip to content
Snippets Groups Projects
Commit bc028df3 authored by Kurund Jalmi's avatar Kurund Jalmi
Browse files

Merge pull request #296 from ravishnair/webtest-fix/improvement

Webtest fix/improvement
parents aa8bbb41 e1326164
No related branches found
No related tags found
No related merge requests found
......@@ -127,11 +127,10 @@ class WebTest_Activity_StandaloneAddTest extends CiviSeleniumTestCase {
$this->type("followup_activity_subject", "This is subject of schedule follow-up activity");
// Clicking save.
$this->click("_qf_Activity_upload");
$this->waitForPageToLoad($this->getTimeoutMsec());
$this->clickLink('_qf_Activity_upload');
// Is status message correct?
$this->assertTrue($this->isTextPresent("Activity '$subject' has been saved."), "Status message didn't show up after saving!");
$this->waitForText('crm-notification-container', "Activity '$subject' has been saved.");
$this->openCiviPage("activity/search", "reset=1", "_qf_Search_refresh");
......
......@@ -90,10 +90,9 @@ class WebTest_Campaign_PetitionUsageScenarioTest extends CiviSeleniumTestCase {
$this->select("status_id", "value=2");
// click save
$this->click("_qf_Campaign_upload-bottom");
$this->waitForPageToLoad($this->getTimeoutMsec());
$this->clickLink('_qf_Campaign_upload-bottom');
$this->assertTrue($this->isTextPresent("Campaign $title Campaign has been saved."), "Status message didn't show up after saving!");
$this->waitForText('crm-notification-container', "Campaign $title Campaign has been saved.");
////////////// Create petition using New Individual profile //////////////////////
......@@ -113,10 +112,9 @@ class WebTest_Campaign_PetitionUsageScenarioTest extends CiviSeleniumTestCase {
$this->select("contact_profile_id", "value=4");
// click save
$this->click("_qf_Petition_next-bottom");
$this->waitForPageToLoad($this->getTimeoutMsec());
$this->clickLink('_qf_Petition_next-bottom');
$this->assertTrue($this->isTextPresent("Petition has been saved."));
$this->waitForText('crm-notification-container', "Petition has been saved.");
$this->waitForElementPresent("link=Add Petition");
......@@ -151,9 +149,8 @@ class WebTest_Campaign_PetitionUsageScenarioTest extends CiviSeleniumTestCase {
$this->type("email-Primary", $email);
// click Sign the petition.
$this->click("_qf_Signature_next-bottom");
$this->waitForPageToLoad($this->getTimeoutMsec());
$this->assertTrue($this->isTextPresent("Thank You"));
$this->clickLink('_qf_Signature_next-bottom', NULL);
$this->waitForText('page-title', "Thank You");
// login
$this->webtestLogin();
......@@ -207,10 +204,9 @@ class WebTest_Campaign_PetitionUsageScenarioTest extends CiviSeleniumTestCase {
$this->fillRichTextField('thankyou_text', "Thank you for your kind contribution to support $title", 'CKEditor');
// click save
$this->click("_qf_Petition_next-bottom");
$this->waitForPageToLoad($this->getTimeoutMsec());
$this->clickLink('_qf_Petition_next-bottom');
$this->assertTrue($this->isTextPresent("Petition has been saved."));
$this->waitForText('crm-notification-container', "Petition has been saved.");
$this->waitForElementPresent("link=Add Petition");
......@@ -243,12 +239,11 @@ class WebTest_Campaign_PetitionUsageScenarioTest extends CiviSeleniumTestCase {
$this->type("email-Primary", $email);
// click Sign the petition.
$this->click("_qf_Signature_next-bottom");
$this->waitForElementPresent("thankyou_text");
$this->clickLink('_qf_Signature_next-bottom', 'thankyou_text');
// check that thank-you page has appropriate title and message
$this->assertTrue($this->isTextPresent("Awesome $title donation"));
$this->assertTrue($this->isTextPresent("Thank you for your kind contribution to support $title"));
$this->waitForText('page-title', "Awesome $title donation");
$this->waitForText('thankyou_text', "Thank you for your kind contribution to support $title");
// login
$this->webtestLogin();
......
......@@ -211,8 +211,7 @@ class WebTest_Case_ActivityToCaseTest extends CiviSeleniumTestCase {
// change activity status
$this->select('activity_change_status', 'value=2');
$this->click("xpath=//div[@class='ui-dialog-buttonset']/button/span[text()='Ok']");
$this->waitForPageToLoad($this->getTimeoutMsec());
$this->click("xpath=//div[@class='ui-dialog-buttonset']/button[2]/span[text()='Continue']");
$this->openCiviPage('case', 'reset=1');
$this->click("xpath=//table[@class='caseSelector']/tbody//tr/td[2]/a[text()='{$contactName}']/../../td[9]/span/a[text()='Manage']");
$this->waitForElementPresent('_qf_CaseView_cancel-bottom');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment