mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-22 07:52:36 +00:00
26 lines
482 B
PHP
26 lines
482 B
PHP
<?php
|
|
|
|
namespace Step\Acceptance;
|
|
|
|
use \AcceptanceTester as Tester;
|
|
|
|
#[\AllowDynamicProperties]
|
|
class EditView extends Tester
|
|
{
|
|
/**
|
|
* Wait for for the edit view to become visible
|
|
*/
|
|
public function waitForEditViewVisible()
|
|
{
|
|
$I = $this;
|
|
$I->waitForElementVisible('#EditView');
|
|
}
|
|
|
|
public function clickSaveButton()
|
|
{
|
|
$I = $this;
|
|
$I->executeJS('window.scrollTo(0,0); return true;');
|
|
$I->click('Save');
|
|
}
|
|
}
|