mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2025-02-10 16:32:27 +00:00
19 lines
382 B
PHP
19 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');
|
|
}
|
|
}
|