* [uitest] Add createuser ui testcase

This commit is contained in:
azalea
2024-07-24 16:47:57 +08:00
committed by 李阳
parent 57f30d0e70
commit b24806bdc7
+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);
}
}