mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-22 07:52:36 +00:00
72 lines
2.1 KiB
PHP
72 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace Step\Acceptance;
|
|
|
|
#[\AllowDynamicProperties]
|
|
class Calls extends \AcceptanceTester
|
|
{
|
|
/**
|
|
* Create a call
|
|
*
|
|
* @param string $name
|
|
*/
|
|
public function createCall($name)
|
|
{
|
|
$I = new EditView($this->getScenario());
|
|
$DetailView = new DetailView($this->getScenario());
|
|
|
|
$Sidebar = new SideBar($this->getScenario());
|
|
$faker = $this->getFaker();
|
|
|
|
$I->waitForText('Log Call', null, '.actionmenulink');
|
|
$I->see('Log Call', '.actionmenulink');
|
|
$Sidebar->clickSideBarAction('Log');
|
|
$I->waitForEditViewVisible();
|
|
$I->fillField('#name', $name);
|
|
$I->fillField('#date_start_date', '01/19/2038');
|
|
$I->fillField('#description', $faker->text());
|
|
|
|
$I->waitForElementVisible('#date_start_hours');
|
|
|
|
$I->clickSaveButton();
|
|
$DetailView->waitForDetailViewVisible();
|
|
}
|
|
/**
|
|
* Create a call and relate to a module
|
|
*
|
|
* @param $name, $module_name, $module, $params
|
|
*
|
|
*/
|
|
public function createCallRelateModule($name, $module_name, $module, $params = array())
|
|
{
|
|
$I = new EditView($this->getScenario());
|
|
$DetailView = new DetailView($this->getScenario());
|
|
|
|
$Sidebar = new SideBar($this->getScenario());
|
|
$faker = $this->getFaker();
|
|
|
|
$I->waitForText('Log Call', null, '.actionmenulink');
|
|
$I->see('Log Call', '.actionmenulink');
|
|
$Sidebar->clickSideBarAction('Log');
|
|
$I->waitForEditViewVisible();
|
|
$I->fillField('#name', $name);
|
|
$I->fillField('#date_start_date', '01/19/2038');
|
|
$I->fillField('#description', $faker->text());
|
|
|
|
if (!empty($params)) {
|
|
foreach ($params as $field => $value) {
|
|
$I->selectOption('#'.$field, $value);
|
|
}
|
|
}
|
|
|
|
$I->waitForElementVisible('#date_start_hours');
|
|
|
|
$I->selectOption('#parent_type', $module);
|
|
$I->fillField('#parent_name', $module_name);
|
|
|
|
$I->wait(2);
|
|
$I->clickSaveButton();
|
|
$DetailView->waitForDetailViewVisible();
|
|
}
|
|
}
|