mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-22 07:52:36 +00:00
20 lines
382 B
PHP
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');
|
|
}
|
|
}
|