Web Test Fix
[civicrm-core.git] / tests / phpunit / WebTest / Contact / AddContactsToEventAdvancedSearchTest.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
06a1bc01 4 | CiviCRM version 4.5 |
6a488035 5 +--------------------------------------------------------------------+
06a1bc01 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License along with this program; if not, contact CiviCRM LLC |
21 | at info[AT]civicrm[DOT]org. If you have questions about the |
22 | GNU Affero General Public License or the licensing of CiviCRM, |
23 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
24 +--------------------------------------------------------------------+
25*/
26
6a488035
TO
27require_once 'CiviTest/CiviSeleniumTestCase.php';
28class WebTest_Contact_AddContactsToEventAdvancedSearchTest extends CiviSeleniumTestCase {
29
30 protected function setUp() {
31 parent::setUp();
32 }
33
34 function testAddContactsToEventAdvanceSearch() {
6a488035
TO
35 $this->webtestLogin();
36 $this->waitForPageToLoad($this->getTimeoutMsec());
37
6a488035 38 // Advanced Search
79d6583c 39 $this->openCiviPage('contact/search/advanced', 'reset=1', '_qf_Advanced_refresh');
6a488035
TO
40 $this->click('_qf_Advanced_refresh');
41
42 $this->waitForElementPresent('CIVICRM_QFID_ts_all_8');
43 $this->click('CIVICRM_QFID_ts_all_8');
44
45 $this->select('task', "label=Add Contacts to Event");
46 $this->click('Go');
47
48 // Select event. Based on label for now.
49 $this->waitForElementPresent('event_id');
b5e4fcd9 50 $this->select2('event_id', "Rain-forest Cup Youth Soccer Tournament");
6a488035
TO
51
52 // Select role
53 $this->click('role_id[2]');
54
55 // Select participant status
56 $this->select('status_id', 'value=1');
57
58 // Setting registration source
59 $this->type('source', 'Event StandaloneAddTest Webtest');
60
79d6583c 61 $this->assertElementContainsText('css=tr.crm-participant-form-block-source span.description', 'Source for this registration (if applicable).');
6a488035 62
6a488035
TO
63 // Clicking save.
64 $this->click('_qf_Participant_upload-bottom');
65 $this->waitForPageToLoad($this->getTimeoutMsec());
66 }
67}
68