0
0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2024-11-22 07:52:36 +00:00
salesagility_SuiteCRM/tests/_support/Step/Acceptance/Dashboard.php
2023-07-18 15:53:47 +01:00

20 lines
382 B
PHP

<?php
namespace Step\Acceptance;
use \AcceptanceTester as Tester;
#[\AllowDynamicProperties]
class Dashboard extends Tester
{
/**
* Wait for for the edit view to become visible
*/
public function waitForDashboardVisible()
{
$I = $this;
$I->waitForElementVisible('.dashboard');
$I->waitForElementVisible('.dashletcontainer');
}
}