Merge pull request #9790 from fliespl/patch-3
[civicrm-core.git] / tests / phpunit / WebTest / Contact / AddContactsToEventAdvancedSearchTest.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
81621fee 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
15a4309a 6 | Copyright CiviCRM LLC (c) 2004-2017 |
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 +--------------------------------------------------------------------+
d25dd0ee 25 */
6a488035 26
6a488035 27require_once 'CiviTest/CiviSeleniumTestCase.php';
e9479dcf
EM
28
29/**
30 * Class WebTest_Contact_AddContactsToEventAdvancedSearchTest
31 */
6a488035
TO
32class WebTest_Contact_AddContactsToEventAdvancedSearchTest extends CiviSeleniumTestCase {
33
34 protected function setUp() {
35 parent::setUp();
36 }
37
00be9182 38 public function testAddContactsToEventAdvanceSearch() {
6a488035
TO
39 $this->webtestLogin();
40 $this->waitForPageToLoad($this->getTimeoutMsec());
41
6a488035 42 // Advanced Search
79d6583c 43 $this->openCiviPage('contact/search/advanced', 'reset=1', '_qf_Advanced_refresh');
6a488035
TO
44 $this->click('_qf_Advanced_refresh');
45
ca0cdd20
WA
46 $this->waitForElementPresent("xpath=//div[@id='search-status']/table/tbody/tr[2]/td[2]/input[1]");
47 $this->click("xpath=//div[@id='search-status']/table/tbody/tr[2]/td[2]/input[1]");
6a488035 48
7f82e636 49 $this->select('task', "label=Register participants for event");
47aea6bb 50
6a488035
TO
51 // Select event. Based on label for now.
52 $this->waitForElementPresent('event_id');
b5e4fcd9 53 $this->select2('event_id', "Rain-forest Cup Youth Soccer Tournament");
6a488035
TO
54
55 // Select role
1d4d99e9 56 $this->multiselect2('role_id', array('Volunteer'));
6a488035
TO
57
58 // Select participant status
59 $this->select('status_id', 'value=1');
60
61 // Setting registration source
62 $this->type('source', 'Event StandaloneAddTest Webtest');
63
79d6583c 64 $this->assertElementContainsText('css=tr.crm-participant-form-block-source span.description', 'Source for this registration (if applicable).');
6a488035 65
6a488035
TO
66 // Clicking save.
67 $this->click('_qf_Participant_upload-bottom');
68 $this->waitForPageToLoad($this->getTimeoutMsec());
69 }
96025800 70
6a488035 71}