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