0
0
Fork 0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2025-03-16 22:33:34 +00:00
salesagility_SuiteCRM/tests/acceptance/modules/Documents/DocumentsCest.php

51 lines
1.1 KiB
PHP
Raw Normal View History

2018-05-18 12:30:51 +00:00
<?php
use Faker\Generator;
2023-06-01 15:27:04 +00:00
#[\AllowDynamicProperties]
2018-05-18 12:30:51 +00:00
class DocumentsCest
{
/**
* @var Generator $fakeData
*/
protected $fakeData;
/**
* @var integer $fakeDataSeed
*/
protected $fakeDataSeed;
/**
* @param AcceptanceTester $I
*/
public function _before(AcceptanceTester $I)
{
if (!$this->fakeData) {
$this->fakeData = Faker\Factory::create();
}
2019-08-05 15:31:26 +00:00
$this->fakeDataSeed = mt_rand(0, 2048);
2018-05-18 12:30:51 +00:00
$this->fakeData->seed($this->fakeDataSeed);
}
/**
* @param \AcceptanceTester $I
* @param \Step\Acceptance\ListView $listView
*
* As an administrator I want to view the documents module.
*/
public function testScenarioViewDocumentsModule(
\AcceptanceTester $I,
\Step\Acceptance\ListView $listView
2018-05-18 12:30:51 +00:00
) {
$I->wantTo('View the documents module for testing');
// Navigate to documents list-view
$I->loginAsAdmin();
$I->visitPage('Documents', 'index');
2018-05-18 12:30:51 +00:00
$listView->waitForListViewVisible();
$I->see('Documents', '.module-title-text');
}
}