* [task#127587,done,1h,0h] add testcase browse uitest script.

This commit is contained in:
luxuyang
2024-11-01 14:30:59 +08:00
committed by 谢杞钰
parent 6a04763854
commit da2f4e3b2b
+13
View File
@@ -0,0 +1,13 @@
<?php
class browsePage extends page
{
public function __construct($webdriver)
{
parent::__construct($webdriver);
$xpath = array(
'caseListID' => "//a[text()='ID']"
);
$this->dom->xpath = array_merge($this->dom->xpath, $xpath);
}
}