mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-21 23:47:57 +00:00
126 lines
3.2 KiB
PHP
126 lines
3.2 KiB
PHP
<?php
|
|
|
|
use Codeception\Actor;
|
|
use Faker\Factory;
|
|
use Codeception\Lib\Friend;
|
|
|
|
/**
|
|
* Inherited Methods
|
|
* @method void wantToTest($text)
|
|
* @method void wantTo($text)
|
|
* @method void execute($callable)
|
|
* @method void expectTo($prediction)
|
|
* @method void expect($prediction)
|
|
* @method void amGoingTo($argumentation)
|
|
* @method void am($role)
|
|
* @method void lookForwardTo($achieveValue)
|
|
* @method void comment($description)
|
|
* @method Friend haveFriend($name, $actorClass = null)
|
|
* @method click(string $string)
|
|
* @method acceptPopup()
|
|
* @method seeInPopup(string $string)
|
|
* @method wait(int $int)
|
|
* @method fillField(string $string, string $string1)
|
|
* @method checkOption(string $string)
|
|
* @method waitForElementVisible($string, int $timeout = 5)
|
|
* @method waitForElementNotVisible($element, $timeout = 5)
|
|
* @method waitForText($text, $timeout = 5, $selector = null)
|
|
* @method selectOption(string $string, string $string1)
|
|
* @method see(string $string)
|
|
* @method amOnUrl($getInstanceURL)
|
|
* @method getInstanceURL()
|
|
* @method dontSee(string $string)
|
|
* @method getAdminPassword()
|
|
* @method getAdminUser()
|
|
* @method executeJS(string $string)
|
|
*
|
|
* @SuppressWarnings(PHPMD)
|
|
*/
|
|
#[\AllowDynamicProperties]
|
|
class AcceptanceTester extends Actor
|
|
{
|
|
use _generated\AcceptanceTesterActions;
|
|
|
|
/**
|
|
* Define custom actions here
|
|
*/
|
|
|
|
/**
|
|
* @return \Faker\Generator
|
|
*/
|
|
public function getFaker()
|
|
{
|
|
return Factory::create();
|
|
}
|
|
|
|
/**
|
|
* @param string $username
|
|
* @param string $password
|
|
*/
|
|
public function login($username, $password)
|
|
{
|
|
$I = $this;
|
|
|
|
$I->amOnUrl($I->getInstanceURL());
|
|
$I->waitForElementVisible('#loginform');
|
|
$I->fillField('#user_name', $username);
|
|
$I->fillField('#username_password', $password);
|
|
$I->click('Log In');
|
|
$I->waitForElementNotVisible('#loginform');
|
|
}
|
|
|
|
public function loginAsAdmin()
|
|
{
|
|
$I = $this;
|
|
|
|
$I->login(
|
|
$I->getAdminUser(),
|
|
$I->getAdminPassword()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Clicks the logout link in the users menu
|
|
*/
|
|
public function logout()
|
|
{
|
|
$I = $this;
|
|
$I->clickUserMenuItem('#logout_link');
|
|
}
|
|
|
|
public function dontSeeMissingLabels()
|
|
{
|
|
$I = $this;
|
|
$I->dontSee('LBL_');
|
|
}
|
|
|
|
public function dontSeeErrors()
|
|
{
|
|
$I = $this;
|
|
$I->dontSee('Warning');
|
|
$I->dontSee('Notice');
|
|
$I->dontSee('Error');
|
|
$I->dontSee('error');
|
|
$I->dontSee('PHP');
|
|
}
|
|
|
|
/**
|
|
* Helper for navigating to a page.
|
|
*
|
|
* @param string $module SuiteCRM module name
|
|
* @param string $action View action name, e.g. index, EditView, DetailView.
|
|
* @param string|null $record The id of a record, used for EditView and DetailView routes.
|
|
*/
|
|
public function visitPage($module, $action, $record = null)
|
|
{
|
|
$I = $this;
|
|
$url = $I->getInstanceURL();
|
|
if ($record !== null) {
|
|
$url .= "/index.php?module={$module}&action={$action}&record={$record}";
|
|
} else {
|
|
$url .= "/index.php?module={$module}&action={$action}";
|
|
}
|
|
$I->amOnUrl($url);
|
|
}
|
|
}
|