* [task#126833,doing,0.5h,2.5h] Add new function of ui test to putoff execution.

This commit is contained in:
yulujie
2024-08-23 11:30:47 +08:00
committed by 李阳
parent 4becd9df2e
commit e13198d5d4
@@ -0,0 +1,20 @@
<?php
include dirname(__FILE__, 5) . '/test/lib/ui.php';
class putoffExecutionTester extends tester
{
/**
* 输入延期执行表单字段。
* Input fields.
*
* @param array $execution
* @param string $executionId
* @access public
*/
public function inputFields($execution, $executionId)
{
$form = $this->initForm('execution', 'view', array('execution' => $executionId ), 'appIframe-execution');
$form->dom->putoff->click();
$form->dom->putoffSubmit->click();
$form->wait(1);
}
}