*[task#136313,doing,0.6h,1.4h] Add edit path file.

This commit is contained in:
lihuifang
2025-01-06 17:04:43 +08:00
committed by 曹延义
parent 05b11e828a
commit a5083a707c
+11
View File
@@ -0,0 +1,11 @@
<?php
class editPage extends page
{
public function __construct($webdriver)
{
parent::__construct($webdriver);
$xpath = array(
);
$this->dom->xpath = array_merge($this->dom->xpath, $xpath);
}
}