+[story#61317,doing,1h,1.5h] Add create element file.

This commit is contained in:
lihuifang
2025-02-06 16:19:53 +08:00
committed by 李阳
parent 5f949301a8
commit 39c96f2e88
+11
View File
@@ -0,0 +1,11 @@
<?php
class createPage extends page
{
public function __construct($webdriver)
{
parent::__construct($webdriver);
$xpath = array(
);
$this->dom->xpath = array_merge($this->dom->xpath, $xpath);
}
}