mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-22 07:52:36 +00:00
18 lines
403 B
PHP
18 lines
403 B
PHP
<?php
|
|
|
|
namespace Step\Acceptance;
|
|
|
|
#[\AllowDynamicProperties]
|
|
class Repair extends Administration
|
|
{
|
|
public function clickQuickRepairAndRebuild()
|
|
{
|
|
$I = $this;
|
|
$I->visitPage('Administration', 'index');
|
|
$I->click('#repair');
|
|
$I->waitForText('Repair');
|
|
$I->click('Quick Repair and Rebuild');
|
|
$I->waitForText('Return to Administration page');
|
|
}
|
|
}
|