+ [task#127604] Add ui test file of edit page.

This commit is contained in:
huairong
2024-09-06 09:43:56 +08:00
committed by 李阳
parent 8575cd6989
commit 9610e46d23
+13
View File
@@ -0,0 +1,13 @@
<?php
class editPage extends page
{
public function __construct($webdriver)
{
parent::__construct($webdriver);
$xpath = array(
'type' => "//*[@id='zin_design_edit_1_form']/div[4]/div/div/input",
'product' => "//*[@id='zin_design_edit_1_form']/div[2]/div/div/input",
);
$this->dom->xpath = array_merge($this->dom->xpath, $xpath);
}
}