+ [task#126575] add ui test files of edit.

This commit is contained in:
huairong
2024-08-23 15:57:33 +08:00
committed by 李阳
parent 93de1f659c
commit c83727d45f
+15
View File
@@ -0,0 +1,15 @@
<?php
class editPage extends page
{
public function __construct($webdriver)
{
parent::__construct($webdriver);
$xpath = array(
'nameTip' => "//*[@id='nameTip']",
'beginTip' => "//*[@id='beginTip']",
'endTip' => "//*[@id='endTip']",
'submitBtn' => "//*[@id='zin_programplan_edit_form']/div[9]/div/button/span",
);
$this->dom->xpath = array_merge($this->dom->xpath, $xpath);
}
}